码迷,mamicode.com
首页 > 移动开发 > 详细

【iOS】NSNotification

时间:2015-11-21 22:23:32      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

NSNotification 常用的几个方法,代码如下:

 

// 发送通知
[[NSNotificationCenter defaultCenter] postNotificationName:@"broadcastName" object:nil];

// 接收通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(doSomething:) name:@"broadcastName" object:nil];

// 移除通知
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"broadcastName" object:nil];

 

【iOS】NSNotification

标签:

原文地址:http://www.cnblogs.com/jaxer/p/4984832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!