码迷,mamicode.com
首页 >  
搜索关键字:nsnotificationcenter    ( 284个结果
NSNotification
1.什么是NSNotification 每个运行中的application都有一个NSNotificationCenter的成员变量,它的功能就类似与公共栏,对象在这里注册关注每个确定Notification,我们把这些注册对象叫做observer,其他的一些对象会给center发送Notific....
分类:其他好文   时间:2015-09-12 09:35:29    阅读次数:195
根据光线感应关闭和开启屏幕
根据光线感应关闭和开启屏幕UIDevice *_curDevice = [UIDevice currentDevice]; [_curDevice setProximityMonitoringEnabled:YES]; NSNotificationCenter *_defaultCenter =.....
分类:其他好文   时间:2015-09-10 19:31:22    阅读次数:139
IOS学习笔记 ---- 15/09/02
1.三种方式监听方式:addTarget方法;使用代理方法;[[NSNotificationCenter defaultCenter] addObserver]方法监听通知;2.在storyboard删除原来的ViewController后再添加NavigationController时没有自动设置...
分类:移动开发   时间:2015-09-06 09:50:42    阅读次数:175
文本框输入与键盘隐藏
//移除通知- (void)dealloc { [[NSNotificationCenter defaultCenter]removeObserver:nil];}- (void)viewDidLoad { [super viewDidLoad]; // Do any additional s...
分类:其他好文   时间:2015-09-01 16:27:48    阅读次数:144
KVO
iOS 中监听某个值的改变有哪些方法?在一个复杂的,有状态的系统中,当一个对象的状态发生改变,如何通知系统,并对状态改变做出相应的行为是必需考虑的一个问题,在iOS中为这类问题提供了4种解决方法:1. NSNotifiactaion 和 NSNotificationCenter:通知中心2. Del...
分类:其他好文   时间:2015-09-01 14:01:41    阅读次数:178
iOS开发之通知机制
1、通知中心每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信任何一个对象都可以向通知中心发布通知(NSNotification),描述自己在做什么。其他感兴趣的对象(Observer)可以申请在某个特定通知发布时(或在某个特定的对象发...
分类:移动开发   时间:2015-08-31 21:17:25    阅读次数:189
通知中心
最简单的方式在b文件中建立接收者[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(action) name:@"xxx" object:nil];并在action中做出响应在a文件中发送通知[[NSNo...
分类:其他好文   时间:2015-08-31 19:13:48    阅读次数:104
IOS Android:消息事件通知 NSNotificationCenter EventBus
IOS Android:消息事件通知 NSNotificationCenter EventBus...
分类:移动开发   时间:2015-08-28 21:39:27    阅读次数:207
NSNotificationCenter
邓超界:下面一定要用self.collectView,不是self.view,更不是self// 2.监听收藏改变通知,并刷新数据[[NSNotificationCenterdefaultCenter]addObserver:self.collectionViewselector:@selector...
分类:其他好文   时间:2015-08-19 23:15:32    阅读次数:107
iOS 传值总结
在ios开发中,我们经常需要用到传值来实现对数据的传递和加载,不管是跨页面的传值还是不跨页面的传值,关于传值的实现我简单的做了以下总结:       一:利用通知(NSNotificationCenter)进行传值:               首先我们从ViewController跳到RootViewController中,在RootViewController中写如下代码: ...
分类:移动开发   时间:2015-08-19 13:28:15    阅读次数:142
284条   上一页 1 ... 12 13 14 15 16 ... 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!