通知中心NSNotificationCenter

n一个完整的通知一般包含3个属性:

Ø- (NSString*)name;//通知的名称

Ø- (id)object;//通知发布者(是谁要发布通知)

Ø- (NSDictionary*)userInfo;//一些额外的信息(通知发布者传递给通知接收者的信息内容)

初始化一个通知(NSNotification)对象

Ø+ (instancetype)notificationWithName:(NSString*)aName object:(id)anObject;

Ø+ (instancetype)notificationWithName:(NSString*)aName object:(id)anObject userInfo:(NSDictionary*)aUserInfo;

- (instancetype)initWithName:(NSString*)name object:(id)object userInfo:(NSDictionary*)userInfo

发布通知的方法:

一般用 [NSNotificationCenterdefaultCenter] 方法来创建通知中心通知中心(NSNotificationCenter)提供了相应的方法来帮助发布通知

n- (void)postNotification:(NSNotification*)notification;

Ø发布一个notification通知,可在notification对象中设置通知的名称、通知发布者、额外信息等

n- (void)postNotificationName:(NSString*)aName object:(id)anObject;

Ø发布一个名称为aName的通知,anObject为这个通知的发布者

n- (void)postNotificationName:(NSString*)aName object:(id)anObject userInfo:(NSDictionary*)aUserInfo;

Ø发布一个名称为aName的通知,anObject为这个通知的发布者,aUserInfo为额外信息

通知中心(NSNotificationCenter)提供了方法来注册一个监听通知的监听器(Observer)

n- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString*)aName object:(id)anObject;

Øobserver:监听器,即谁要接收这个通知

ØaSelector:收到通知后,回调监听器的这个方法,并且把通知对象当做参数传入

ØaName:通知的名称。如果为nil,那么无论通知的名称是什么,监听器都能收到这个通知

ØanObject:通知发布者。如果为anObject和aName都为nil,监听器都收到所有的通知

第二种注册监听器的方法

n- (id)addObserverForName:(NSString*)name object:(id)obj queue:(NSOperationQueue*)queue usingBlock:(void(^)(NSNotification*note))block;

Øname:通知的名称

Øobj:通知发布者

Øblock:收到对应的通知时,会回调这个block

Øqueue:决定了block在哪个操作队列中执行,如果传nil,默认在当前操作队列中同步执行

n取消注册通知监听器

通知中心不会保留(retain)监听器对象,在通知中心注册过的对象,必须在该对象释放前取消注册。否则,当相应的通知再次出现时,通知中心仍然会向该监听器发送消息。因为相应的监听器对象已经被释放了,所以可能会导致应用崩溃

n通知中心提供了相应的方法来取消注册监听器

Ø- (void)removeObserver:(id)observer;

Ø-(void)removeObserver:(id)observer name:(NSString*)aName object:(id)anObject;

n一般在监听器销毁之前取消注册(如在监听器中加入下列代码):

- (void)dealloc {

//[super dealloc];非ARC中需要调用此句

[[NSNotificationCenterdefaultCenter]removeObserver:self];

}

你可能感兴趣的:(通知中心NSNotificationCenter)