一. 1个完整的通知一般包含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
三. 发布通知的方法:
一般用 [NSNotificationCenter defaultCenter] 方法来创建通知中心通知中心(NSNotificationCenter)提供了相应的方法来帮助发布通知
- (void)postNotification:(NSNotification*)notification;
发布一个notification通知,可在notification对象中设置通知的名称、通知发布者、额外信息等 - (void)postNotificationName:(NSString*)aName object:(id)anObject;
发布一个名称为aName的通知,anObject为这个通知的发布者 - (void)postNotificationName:(NSString)aName object:(id)anObject userInfo:(NSDictionary)aUserInfo;
发布一个名称为aName的通知,anObject为这个通知的发布者,aUserInfo为额外信息
四. 通知中心(NSNotificationCenter)提供了方法来注册一个监听通知的监听器(Observer)
- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString*)aName object:(id)anObject;
observer:监听器,即谁要接收这个通知
aSelector:收到通知后,回调监听器的这个方法,并且把通知对象当做参数传入
aName:通知的名称。如果为nil,那么无论通知的名称是什么,监听器都能收到这个通知
anObject:通知发布者。如果为anObject和aName都为nil,监听器都收到所有的通知
第二种注册监听器的方法 - (id)addObserverForName:(NSString)name object:(id)obj queue:(NSOperationQueue)queue usingBlock:(void (^)(NSNotification*note))block;
name:通知的名称
obj:通知发布者
block:收到对应的通知时,会回调这个block
queue:决定了block在哪个操作队列中执行,如果传nil,默认在当前操作队列中同步执行
五. 取消注册通知监听器
通知中心不会保留(retain)监听器对象,在通知中心注册过的对象,必须在该对象释放前取消注册。否则,当相应的通知再次出现时,通知中心仍然会向该监听器发送消息。因为相应的监听器对象已经被释放了,所以可能会导致应用崩溃
通知中心提供了相应的方法来取消注册监听器
- (void)removeObserver:(id)observer;
- (void)removeObserver:(id)observer name:(NSString*)aName object:(id)anObject;
一般在监听器销毁之前取消注册(如在监听器中加入下列代码): - (void)dealloc {
//[super dealloc]; 非ARC中需要调用此句
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
//六. 例如: 监听距离感应的通知
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(proximityChange:)
name:UIDeviceProximityStateDidChangeNotification object:nil];
/七.发通知
(1) 发通知
[[NSNotificationCenter defaultCenter]postNotificationName:@"jumpFromIconBtn" object:@{@"index":@(button.tag)}];
( (2) 通知监听格子头像跳转到秀场控制器
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(jumpFromIconBtn:) name:@"jumpFromIconBtn" object:nil];
() (3)点击了格子头像
- (void)jumpFromIconBtn:(NSNotification *)obj{ }
如果上面的文章对您在以后的开发中能派上用场,请关注或点个喜欢吧,我会不定期的给您分享或推荐一些好的文章哦_
网友评论