首页 > 移动平台 > 详细

iOS NSNotificationCenter 最基本使用

时间:2014-06-12 12:40:13      阅读:443      评论:0      收藏:0      [点我收藏+]

 

 

 

bubuko.com,布布扣
 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);
}
bubuko.com,布布扣

 

iOS NSNotificationCenter 最基本使用,布布扣,bubuko.com

iOS NSNotificationCenter 最基本使用

原文:http://www.cnblogs.com/qingjoin/p/3782260.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!