defaultCenter,消息中心只有一个,通过类方法获取它的单例。
addObserver,添加监听者实例,此处为当前实例
selector,observer中的一个方法指针,当有消息的时候会执行此方法,并把相关上下文以参数传递过去
name,注册所关心消息的名称,
object,这个是对消息发送方的一个过滤,此参数据说明当前监听器仅对某个对象发出的消息感兴趣。
如下:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationMethod:) name:UIApplicationDidEnterBackgroundNotification object:@"大大”]; //相同NotificationName只接受object:@“大大”的发送者的接收,如果object = nil,相同NotificationName都接收
[[NSNotificationCenter defaultCenter] postNotificationName:UIApplicationDidEnterBackgroundNotification object:@"大大" userInfo:@{@"name":@"1111"}];
[[NSNotificationCenter defaultCenter] postNotificationName:UIApplicationDidEnterBackgroundNotification object:@"大大111" userInfo:@{@"name":@"2222"}];
//
注册观察者
[[NSNotificationCenter
defaultCenter] addObserver:self selector:@selector(handleMessage:) name:kDZTestNotificatonMessage object:nil];
//被观察者----->发送通知给观察者
[[NSNotificationCenter
defaultCenter] postNotificationName:kDZTestNotificatonMessage object:Nil userInfo:@{}];
- (void)alipayReturn:(NSNotification *)result {
NSLog(@"112");
NSDictionary * resultDic = result.object;
}
//退出要移除观察对象,不然耗内存(每时每刻等待通知接收,好性能)
-(void)
dealloc
{
[[NSNotificationCenter
defaultCenter] removeObserver:self];
}