首页 > 代码库 > iOS NSNotificationCenter 最基本使用
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); }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。