How IOS sends notifications between host app and app Extension _ios

Source: Internet
Author: User

How do I send notifications from one app to another app? (Example: Sogou input method to download skin after the completion of the use of skin) Note: Sogou Input method is app, and keyboard is extension

When you add app extension to your app, if you want to send a notice to extension in app maybe this article will help you.

Learn More

/Send notification-(void) Postnotificaiton {cfnotificationcenterref notification = Cfnotification
Centergetdarwinnotifycenter ();
Cfnotificationcenterpostnotification (Notification, CFSTR ("<notificaiton name>"), Null,null, YES); }//Receive notification-(void) receivenotification {CFNOTIFICATIONCENTERREF notification = 
Cfnotificationcentergetdarwinnotifycenter (); Cfnotificationcenteraddobserver (notification, (__bridge const void *) (self), observermethod,cfstr ("<notificaiton 
Name> "), NULL, cfnotificationsuspensionbehaviordeliverimmediately); } void Observermethod (Cfnotificationcenterref center, void *observer, cfstringref name, const void *object, Cfdictionaryr EF userInfo) {//Your Custom Work}//removal notification-(void) removenotification {cfnotificationcenterref notification = Cfnoti
Ficationcentergetdarwinnotifycenter (); Cfnotificationcenterremoveobserver (notification, (__bridge const void *) (self), cfstr ("<notificaiton name>"),
NULL); }

The above gives you a brief introduction of how iOS in the Host app and app Extension to send the relevant content of the notice, I hope to help you!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.