【iOS】NSNotification 常用方法】的更多相关文章

NSNotification 常用的几个方法,代码如下: // 发送通知 [[NSNotificationCenter defaultCenter] postNotificationName:@"broadcastName" object:nil]; // 接收通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(doSomething:) name:@"broadcastNa…
通知中心,它是IOS程序内部的一种消息广播机制,通过它,可以实现无引用关系的对象之间的通信.通知中心他是基于观察者模式,它只能进行程序内部通信,不能跨应用程序进程通信.当通知中心接受到消息后会根据设置,将消息发送给订阅者,这里的订阅者可以有多个. 通知中心与代理模式类似,都可以实现多个对象间通信,通知中心可以将一个通知发送给多个监听者,而代理模式每个对象只能添加一个代理.但无论是那种模式,都是一种低耦合的设计,实现对象间的通信. 使用通知中心的步骤 1.注册观察者对某个事件(以字符串命名)感兴趣…
一. 先看下官方对NSNotification通知的解释 1. NSNotification 通知 @interface NSNotification : NSObject <NSCopying, NSCoding> 接口通知,继承NSObject,实现NSCopying,NSCoding协议 A container for information broadcast through a notification center to all registered observers. 通过通知…
1  文本输入,键盘显示时,view向上,键盘隐藏时,view向下 1.1 注册键盘显示,关闭通知,并实现主界面上下变动 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil]; [[NSNotificationCenter defaultCenter] addObserv…
如果在一个类中想要执行另一个类中的方法可以使用通知 1.创建一个通知对象:使用notificationWithName:object: 或者 notificationWithName:object:userInfo: NSNotification* notification = [NSNotification notificationWithName:kImageNotificationLoadFailed(connection.imageURL)                       …
UIView常用方法 addSubView: // 添加子视图 insertSubview: atIndex // 视图插入到指定索引位置 insertSubview:aboveSubview: // 视图插入指定视图之上 insertSubview:belowSubview: // 视图插入指定视图之下 bringSubviewToFront: // 把视图移动到最顶层 sendSubviewToBack: // 把视图移动到最底层 exchangeSubviewAtIndex:withSub…
普通的通知使用 注册观察者 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getNotificationAction) name:@"ThisIsANoticafication" object:nil]; 发送通知 [[NSNotificationCenter defaultCenter] postNotificationName:@"ThisIsANoticaficatio…
通知中心(NSNotificationCenter) 通知(NSNotification) 一个完整的通知一般包含3个属性:(注意顺序) - (NSString *)name;  通知的名称 - (id)object;  通知发布者(是谁要发布通知) - (NSDictionary *)userInfo;  一些额外的信息(通知发布者传递给通知接收者的信息内容) 初始化(可以理解为创建)一个通知(NSNotification)对象 只有通知的的名称和通知的发布者 + (instancetype)…
// 当应用程序启动完毕的时候就会调用(系统自动调用) - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. NSLog(@"didFinishLaunchingWithOptions"); ret…
关于runtime的学习网上有很多博客,在学习之前也查过很多资料,觉得南峰子老师博客中对 runtime 的讲解挺详细的,博客地址:http://southpeak.github.io/categories/objectivec/ 想要学习的可以去认真的看看. 1.runtime动态创建一个类,添加成员变量,添加方法 // 自定义一个方法 void sayFunction(id self, SEL _cmd, id some) { NSLog(@"%@岁的%@说:%@", object…