iOS-NSNotificationCenter

1. NSNotificationCenter(通知中心)

  • 继承自NSObject
  • 每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信
  • 任何一个对象都可以向通知中心发布通知(NSNotification),描述自己在做什么。其他感兴趣的对象(Observer)可以申请在某个特定通知发布时(或在某个特定的对象发布通知时)收到这个通知
  • [NSNotificationCenter defaultCenter]获取到的是单例

2. 通知与多线程

  1. 通知方法调用一般都是由发出通知所在的线程决定.
  2. 最好不要在异步线程监听通知,否则接收不到
  3. 如果要在异步线程监听通知代码, 发送通知代码必须在监听代码之后,并不一定要在同一个线程
dispatch_async(dispatch_get_global_queue(0, 0), ^{

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(beginEditing) name:UITextFieldTextDidBeginEditingNotification object:self];

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(endEditing) name:UITextFieldTextDidEndEditingNotification object:self];
});

3. 一次性通知(监听1次后就不再监听)

id observer = [[NSNotificationCenter defaultCenter] addObserverForName:UITextFieldTextDidBeginEditingNotification object:self queue:[[NSOperationQueue alloc] init] usingBlock:^(NSNotification * _Nonnull note) {


    // 移除通知
    [[NSNotificationCenter defaultCenter] removeObserver:observer];
}];

4. 发送通知和接收通知步骤

  1. 在通知中心注册监听器
    • 在通知中心(NSNotificationCenter)注册监听器(Observer),当通知中心出现某类信息后,回传给对应的监测对象,并让监听对象执行某个方法
    • 开发中推荐使用方法一,因为可以控制执行线程(虽然一般是主线程),另外可以直接在block中实现后续代码,而不是像方法二需要再实现相应的action代码。
    • 方法二实现的action代码,若是带参的,参数是通知的userInfo字典内容
方法一:
 /**
    * name:通知的名称
    * obj:发布通知者
    * block:收到对应的通知时,会回调这个block
    * queue:决定了block在哪个操作队列中执行,如果传nil,默认在当前操作队列中同步执行
    * 返回的对象:An opaque object to act as the observer,要记录这个对象,然后销毁它
    */
- (id)addObserverForName:(NSString *)name object:(id)obj queue:(NSOperationQueue *)queue usingBlock:(void (^)(NSNotification *note))block;
方法二:
 /**
    * observer:监听对象,即谁要接收这个通知
    * aSelector:收到通知后,回调监听对象的这个方法,并且把通知对象当做参数传入
    * aName:通知的名称。如果为nil,那么无论通知的名称是什么,监听对象都能收到这个通知
    * anObject:发布通知对象。如果为anObject和aName都为nil,监听对象都收到所有的通知
    */
-(void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;
  • 取消注册监听器
    • 通知中心不会保留(retain)监听器对象,在通知中心注册过的对象,必须在该对象释放前取消注册。
    • 否则,当相应的通知再次出现时,通知中心仍然会向该监听器发送消息。因为相应的监听器对象已经被释放了,所以可能会导致应用崩溃
    //一般在监听器销毁之前取消注册(如在监听器中加入下列代码):
-(void)dealloc {
    //[super dealloc];  非ARC中需要调用此句

### 方法一的监听器销毁(假如当时记录的监听器成员变量为observer)
    [[NSNotificationCenter defaultCenter] removeObserver:self.observer];


### 方法二的监听器销毁
    [[NSNotificationCenter defaultCenter] removeObserver:self];//取消这个监测对象所有注册信息

    }
  • 初始化一个通知(NSNotification)对象
 /**
    * (NSString *)name:通知的名称
    * (id)object:通知发布者(是谁要发布通知)
    * (NSDictionary*)userInfo:一些额外的信息(通知发布者传递给通知接收者的信息内容)
    */
+(instancetype)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;

-(instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
  • 发送通知
- (void)releasingNoticesWithDict:(NSDictionary*) dict{

    [[NSNotificationCenter defaultCenter] postNotificationName:@"shopNotification" object:self userInfo:dict];
}

5. NSNotificationCenter的属性和方法

@interface NSNotificationCenter : NSObject {
    @package
    void * __strong _impl;
    void * __strong _callback;//回收信号
    void *_pad[11];
}

// 获取通知中心
+ (NSNotificationCenter *)defaultCenter;

// 添加监听器
- (void)addObserver:(id)observer selector:(SEL)aSelector name:(nullable NSString *)aName object:(nullable id)anObject;

// 发送通知
- (void)postNotification:(NSNotification *)notification;
- (void)postNotificationName:(NSString *)aName object:(nullable id)anObject;
- (void)postNotificationName:(NSString *)aName object:(nullable id)anObject userInfo:(nullable NSDictionary *)aUserInfo;

// 移除监听器
//取消这个监测对象所有注册信息
- (void)removeObserver:(id)observer;
//取消这个监测对象某个信息的注册
- (void)removeObserver:(id)observer name:(nullable NSString *)aName object:(nullable id)anObject;


// 添加监听器并在某线程中执行block回调。返回的监听者对象必须销毁
- (id )addObserverForName:(nullable NSString *)name object:(nullable id)obj queue:(nullable NSOperationQueue *)queue usingBlock:(void (^)(NSNotification *note))block NS_AVAILABLE(10_6, 4_0);


@end

你可能感兴趣的:(iOS-NSNotificationCenter)