iOS开发 NSNotificationCenter 通知的使

2017-05-22  本文已影响13人  王誌傑

//发送通知到 (在需要的地方发送通知, 信息储存在userInfo(字典类型))

[[NSNotificationCenterdefaultCenter]postNotificationName:NSNOTIFICATION_TAGobject:selfuserInfo:userInfo];

//z在需要的地方接受通知

[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(messageNotifacation:)name:NSNOTIFICATION_TAGobject:nil];

//方法

- (void)messageNotifacation:(NSNotification*)notification {

NSDictionary*userInfo = notification.userInfo;

信息可以从userInfo中取出

}

注:"NSNOTIFICATION_TAG" 我们自定义的标识符

上一篇下一篇

猜你喜欢

热点阅读