一、了解几个相关的类
1、NSNotification
这个类可以理解为一个消息对象,其中有三个成员变量。
这个成员变量是这个消息对象的唯一标识,用于辨别消息对象。
@property (readonly, copy) NSString *name;
这个成员变量定义一个对象,可以理解为针对某一个对象的消息。
@property (readonly, retain) id object;
这个成员变量是一个字典,可以用其来进行传值。
@property (readonly, copy) NSDictionary *userInfo;
NSNotification的初始化方法:
- (instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
+ (instancetype)notificationWithName:(NSString *)aName object:(id)anObject;
+ (instancetype)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
注意:官方文档有明确的说明,不可以使用init进行初始化
2、NSNotificationCenter
这个类是一个通知中心,使用单例设计,每个应用程序都会有一个默认的通知中心。用于调度通知的发送的接受。
添加一个观察者,可以为它指定一个方法,名字和对象。接受到通知时,执行方法。(在需要的页面添加观察者)
- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;
发送通知消息的方法(被观察者发生某些变化的时候发送通知)
- (void)postNotification:(NSNotification *)notification;
- (void)postNotificationName:(NSString *)aName object:(id)anObject;
- (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
移除观察者的方法(放在dealloc方法中)
- (void)removeObserver:(id)observer;
- (void)removeObserver:(id)observer name:(NSString *)aName object:(id)anObject;
几点注意:
1、如果发送的通知指定了object对象,那么观察者接收的通知设置的object对象与其一样,才会接收到通知,但是接收通知如果将这个参数设置为了nil,则会接收一切通知。
2、观察者的SEL函数指针可以有一个参数,参数就是发送的要观察的对象本身,可以通过这个参数取到消息对象的userInfo,实现传值。
二、通知的使用流程
首先,我们在需要接收通知的地方注册观察者,比如:
//获取通知中心单例对象
NSNotificationCenter * center = [NSNotificationCenter defaultCenter];
//添加当前类对象为一个观察者,name和object设置为nil,表示接收一切通知
[center addObserver:self selector:@selector(notice:) name:@ "123" object:nil];
之后,在我们需要时发送通知消息
//创建一个消息对象
NSNotification * notice = [NSNotification notificationWithName:@ "123" object:nil userInfo:@{@ "1" :@ "123" }];
//发送消息
[[NSNotificationCenter defaultCenter]postNotification:notice];
我们可以在回调的函数中取到userInfo内容,如下:
-( void )notice:(id)sender{
NSLog(@ "%@" ,sender);
}
打印结果如下:
三 、使用系统自带通知示例
1、添加观察者
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textChanged:) name:UITextViewTextDidChangeNotification object:self.textView];
2、因为使用的是UITextView自带的通知UITextViewTextDidChangeNotification,所以该通知会在UITextView编辑结束的时候自动发送,不需要post
3、接收到通知之后的调用相应的textChanged:方法
- (void)textChanged:(NSNotification*)noti {
//接收到通知后想做的操作
}
4、移除通知
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self name:UITextViewTextDidChangeNotification object:self.addressTextView];
}
四、通知和代理的选择
共同点:
利用通知和代理都能完成对象之间的通信.
不同点:
代理: 一对一关系(一个对象只能告诉另一个对象发生了什么事情).
通知: 多对多关系(一个对象能告诉N个对象发生了什么事情, 一个对象能得知N个对象发生了什么事情).