首页 > 代码库 > NSNotificationCenter的使用
NSNotificationCenter的使用
1.注册NSNotificationCenter,并设置关联
1 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getArray:) name:@"getArray" object:nil];2 3 - (void)getArray:(NSNotification*)aNotification4 {5 //接收传过来的数组,数组中存有Status类的对象6 self.statusArr = aNotification.object;7 }
2.消息发送(带参)
1 //将tempArr数组通过消息中心发送到@"getArray" 这个名字的消息对应的方法中2 [[NSNotificationCenter defaultCenter] postNotificationName:@"getArray" object:tempArr];
补充:IOS本地通知UILocalNotification的使用,参考地址->http://www.cnblogs.com/lan0725/p/3195263.html
NSNotificationCenter的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。