码迷,mamicode.com
首页 > 其他好文 > 详细

NSNotificationCenter(通知)

时间:2015-11-23 16:22:26      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:

//下面是不同类中需要实现的代码

1.[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sender:) name:@"刘冠" object:nil];//通知接收者(监听者)

-(void) sender:(NSNotification *)input

{

    NSLog(@"%@",input.object) ;

}

//引用计数为0的情况下,当内存回收时会调用dealloc(C++析构函数,做最后的内存清理工作)方法

- (void)dealloc

{

    [[NSNotificationCenter defaultCenter] removeObserver:self];//要移除该通知监听

}

2.[[NSNotificationCenter defaultCenter] postNotificationName:@"刘冠" object:@"刘冠"];//通知发送者(被监听者)

NSNotificationCenter(通知)

标签:

原文地址:http://www.cnblogs.com/liuguan/p/4988645.html

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