iOS NSNotificationCenter 最基本使用
NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithInt:2] , @"actcode",nil]; //首先设置需要通知的方法。加入通知中心。比如当程序跑到这时就通知游戏 [[NSNotificationCenter defaultCenter] postNotificationName:gameStartNotification object:nil userInfo:dic]; //调用时-------------------------------------------- //注册消息通知 捕获游戏start时的方法 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(testNotify:) name:gameStartNotification object:nil]; //实现方法 -(void)testNotify:(NSNotification*)notify { NSLog(@"testNotify:%@",notify); }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。