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

iOS-设计模式之通知

时间:2015-12-04 01:00:34      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

通知设计模式简单好用,就是一个项目中如果用的太多,不利于代码维护,可读性太差。

实现过程:

    [[NSNotificationCenter defaultCenter]postNotificationName:@"notificarions" object:self userInfo:dic];

发一个通知,可以在userInfo:这里进行传值,

    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(notificarions:) name:@"notificarions" object:nil];

接收通知,一定要注意通知名一定要一样。

最后不要忘记要移除通知,否则回造成内存泄漏

    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"notificarions" object:nil];

 

本文GitHub地址https://github.com/zhangkiwi/iOS_SN_NSNotificationCenter

iOS-设计模式之通知

标签:

原文地址:http://www.cnblogs.com/zhang-kiwi/p/5018120.html

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