What is NSNotificationCenter?
NSNotificationCenter是一种一对多的信息广播机制, 一个应用程序同时只能有一个NSNotificationCenter(通知中心)对象.
也就是说, 使用NSNotificationCenter必须要用到单例模式. 与此同时, 也用到了观察者模式.
Where to use NSNotificationCenter?
所有需要实现一对多的地方.
例如 : 点击一个按钮, 需要在多个不同页面有所响应.
(夜间模式)
How to use NSNotificationCenter?
使用的时候, 我习惯添加之后就去dealloc
里写释放, 省的忙着写其他代码, 最后忘记释放, 给app搞crash了...
-
添加一个通知
add
把通知的name
写为常量字符串, 放在存放常量字符串的头文件中, 是我常用的做法.
-
在
removedealloc
方法里释放
-
在其他地方发送通知
post
网友评论