Viewcontroller
//获取通知中心单例对象,一个应用程序只有一个通知中心
NSNotificationCenter *NC=[NSNotificationCenterdefaultCenter ];//不是NSNotification
//添加当前类对象为一个观察者,object设置为nil表示接受一切通知
[NC addObserver:selfselector:@selector(notice:/*接收参数*/)name:@"NoticeNSNotificationCenter"object:nil];
- (void)notice:(id)sender
{
NSLog(@"正在调用通知");
NSLog(@"%@",sender);
//如果数据打印有问题,换成把传值参数换成(NSNotification *)sender NSLog(@"%@", sender.userInfo);
}
如果发送的通知指定了object对象,那么观察者接收的通知设置的object对象与其一样,才会接收到通知,但是接收通知如果将这个参数设置为了nil,则会接收一切通知。
NSDictionary *dict=[NSDictionarydictionaryWithObjectsAndKeys:@"key",@"123",nil];
NSNotification *notice=[NSNotificationnotificationWithName:@"NoticeNSNotificationCenter"object:niluserInfo:dict];//userInfo用来传值,发送消息的时候是NSNotification,不是NSNotificationCenter
//发送消息
[[NSNotificationCenterdefaultCenter ]postNotification:notice];
2015-12-12 10:15:02.513 notice[1210:32618] ----------------
2015-12-12 10:15:02.514 notice[1210:32618]点击button
2015-12-12 10:15:02.514 notice[1210:32618]正在调用通知
2015-12-12 10:15:02.514 notice[1210:32618] NSConcreteNotification 0x7ff768f384e0 {name = NoticeNSNotificationCenter; userInfo = {
123 = key;
}}
知识点:
(1):
这个类可以理解为一个消息对象,其中有三个成员变量。
这个成员变量是这个消息对象的唯一标识,用于辨别消息对象。
@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进行初始化
这个类是一个通知中心,使用单例设计,每个应用程序都会有一个默认的通知中心。用于调度通知的发送的接受。
添加一个观察者,可以为它指定一个方法,名字和对象。接受到通知时,执行方法。
- (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;
移除观察者的方法
- (void)removeObserver:(id)observer;
- (void)removeObserver:(id)observer name:(NSString *)aName object:(id)anObject;