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

IOS中NSNotification使用笔记

时间:2014-06-07 13:37:38      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:ios   notification   基本用法   

1 基本用法

添加观察(可能很多页面)


[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeIntlCode:) name:NOTIFICATION_SUCCESS_SELECT_INTLCODE object:nil];


发出通知(可能只有一个页面)

[[NSNotificationCenter defaultCenter] postNotificationName:NOTIFICATION_SUCCESS_SELECT_INTLCODE object:nil userInfo:[NSDictionary dictionaryWithObject:model forKey:@"selectedIntlCodeModel"]];


在 dealloc中移除监听

[[NSNotificationCenter defaultCenter] removeObserver:self name:NOTIFICATION_SUCCESS_SELECT_INTLCODE object:nil];




IOS中NSNotification使用笔记,布布扣,bubuko.com

IOS中NSNotification使用笔记

标签:ios   notification   基本用法   

原文地址:http://blog.csdn.net/xdrt81y/article/details/28436665

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