美文网首页
iOS开发 NSNotificationCenter 通知的使

iOS开发 NSNotificationCenter 通知的使

作者: 王誌傑 | 来源:发表于2017-05-22 17:27 被阅读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" 我们自定义的标识符

相关文章

网友评论

      本文标题: iOS开发 NSNotificationCenter 通知的使

      本文链接:https://www.haomeiwen.com/subject/glkixxtx.html