本文由DevDiv Vincent (vincent@devdiv.com) 翻译整理,转载请注明出处!
NSNotificationCenter/UILocalNotification/remote notification/notification center令人困惑的关系梳理!
1. 三种类型的notification
苹果提供了三种notification:NSNotificationCenter, UILocalNotification和Remote Notification。
另外自从iOS5起提供了Notification Center,用来管理通知。三种类型的notification作用各不相同。很不幸的时NSNotificationCenter和Notification Center共享了一个名字,但是他们没有关系。
下图总结了三种类型notification的区别:
2. Notification Center
Notification Center是iOS5的新特性,用来管理本地和远程通知的。
Notification Center包含一个窗口,当我们按住status bar上面,然后下拉就可以看到很多消息,比如微博消息、QQ推送消息等。
注意:Notification Center仅用来用来管理UILocalNofication和Remote Notification的通知。 来自NSNotificationCenter的消息(应用内部消息)不是由Notification Center管理的!
NSNotificationCenter最早来自于Mac OSX 10.0,要比Notification Center的概念要早(自iOS5开始引入),由于名字已经被占上了,而有没有更好的名称来描述通知中心的概念,所以很不幸地重名了。。。
原文:
http://news.dice.com/2013/07/15/notifications-in-ios-introduction-and-nsnotificationcenter/