通知与移除通知
2015-12-09 本文已影响0人
j了个p
[[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];