美文网首页
通知与移除通知

通知与移除通知

作者: j了个p | 来源:发表于2015-12-09 11:25 被阅读0次

[[NSNotificationCenterdefaultCenter]postNotificationName:@"MYMARKETHOME"object:selfuserInfo:jsonObject];

[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(handleEvent:)name:@"MYMARKETHOME"object:nil];

- (void)handleEvent:(NSNotification*)Note {

NSDictionary*dict = Note.userInfo;

}

[[NSNotificationCenterdefaultCenter]removeObserver:selfname:@"MYMARKETHOME"object:nil];

相关文章

网友评论

      本文标题:通知与移除通知

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