1、NSNotification
这个类可以理解为一个消息对象,其中有三个成员变量。
这个成员变量是这个消息对象的唯一标识,用于辨别消息对象。
@property (readonly, copy) NSString *name;
这个成员变量定义一个对象,可以理解为针对某一个对象的消息。
@property (readonly, retain) id object;
这个成员变量是一个字典,可以用其来进行传值。
@property (readonly, copy) NSDictionary *userInfo;
NSNotificationCenter
这个类是一个通知中心,使用单例设计,每个应用程序都会有一个默认的通知中心。用于调度通知的发送的接受。
添加一个观察者,可以为它指定一个方法,名字和对象。接受到通知时,执行方法。
- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;
执行selector 中的方法
(void)action: (NSNotification *)aNoti{
1 只有一个参数
NSString *str = aNoti.userInfo;
2 传递一个字典
NSDictionary *dic = [aNoti userINfo];
}
发送通知消息的方法
- (void)postNotification:(NSNotification *)notification;
发送一个消息 没有参数
- (void)postNotificationName:(NSString *)aName object:(id)anObject;
发送一则消息,有参数
- (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
发送一则消息 , 可以有多个参数 ,把参数写在字典中
移除观察者的方法
- (void)removeObserver:(id)observer;
- (void)removeObserver:(id)observer name:(NSString *)aName object:(id)anObject;