NSNotification 是iOS中一個(gè)調(diào)度消息通知的類(lèi),采用單例模式設(shè)計(jì),在程序中實(shí)現(xiàn)傳值匣屡、回調(diào)等地方應(yīng)用很廣。
一荐健、通知的使用三步走
1.通知的創(chuàng)建與發(fā)送
在需要發(fā)送通知的界面中創(chuàng)建通知
// 1.添加字典, 將數(shù)據(jù)包到字典中
NSDictionary *dict =[[NSDictionary alloc] initWithObjectsAndKeys:@"小明",@"name",@"111401",@"number", nil];
// 2.創(chuàng)建通知
NSNotification *notification =[NSNotification notificationWithName:@"InfoNotification" object:nil userInfo:dict];
// 3.通過(guò) 通知中心 發(fā)送 通知
[[NSNotificationCenter defaultCenter] postNotification:notification];
[self dismissViewControllerAnimated:YES completion:nil];
2.通知的接收
在需要接收的控制器中注冊(cè)通知監(jiān)聽(tīng)者险耀,將通知發(fā)送的信息接收
// 1.注冊(cè)通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(InfoNotificationAction:) name:@"InfoNotification" object:nil];
// 2.實(shí)現(xiàn)收到通知觸發(fā)的方法
- (void)InfoNotificationAction:(NSNotification *)notification{
NSLog(@"%@",notification.userInfo);
NSLog(@"---接收到通知---");
}
3.通知的移除
移除通知:
[[NSNotificationCenter defaultCenter] removeObserver:observer name:nil object:self];
注意參數(shù)notificationObserver為要?jiǎng)h除的觀(guān)察者,一定不能置為nil盆色。
二灰蛙、相關(guān)類(lèi)
1、NSNotification
這個(gè)類(lèi)可以理解為一個(gè)消息對(duì)象隔躲,其中有三個(gè)成員變量摩梧。
這個(gè)成員變量是這個(gè)消息對(duì)象的唯一標(biāo)識(shí),用于辨別消息對(duì)象宣旱。
@property (readonly, copy) NSString *name;
這個(gè)成員變量定義一個(gè)對(duì)象仅父,可以理解為針對(duì)某一個(gè)對(duì)象的消息。
@property (readonly, retain) id object;
這個(gè)成員變量是一個(gè)字典浑吟,可以用其來(lái)進(jìn)行傳值笙纤。
@property (readonly, copy) NSDictionary *userInfo;
NSNotification的初始化方法:
- (instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
+ (instancetype)notificationWithName:(NSString *)aName object:(id)anObject;
+ (instancetype)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
注意:官方文檔有明確的說(shuō)明,不可以使用init進(jìn)行初始化
2组力、NSNotificationCenter
這個(gè)類(lèi)是一個(gè)通知中心省容,使用單例設(shè)計(jì),每個(gè)應(yīng)用程序都會(huì)有一個(gè)默認(rèn)的通知中心燎字。用于調(diào)度通知的發(fā)送的接受腥椒。
添加一個(gè)觀(guān)察者阿宅,可以為它指定一個(gè)方法,名字和對(duì)象笼蛛。接受到通知時(shí)洒放,執(zhí)行方法。
- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;
發(fā)送通知消息的方法
- (void)postNotification:(NSNotification *)notification;
- (void)postNotificationName:(NSString *)aName object:(id)anObject;
- (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
移除觀(guān)察者的方法
- (void)removeObserver:(id)observer;
- (void)removeObserver:(id)observer name:(NSString *)aName object:(id)anObject;
幾點(diǎn)注意:
如果發(fā)送的通知指定了object對(duì)象滨砍,那么觀(guān)察者接收的通知設(shè)置的object對(duì)象與其一樣往湿,才會(huì)接收到通知,但是接收通知如果將這個(gè)參數(shù)設(shè)置為了nil惋戏,則會(huì)接收一切通知领追。
觀(guān)察者的SEL函數(shù)指針可以有一個(gè)參數(shù),參數(shù)就是發(fā)送的死奧西對(duì)象本身日川,可以通過(guò)這個(gè)參數(shù)取到消息對(duì)象的userInfo蔓腐,實(shí)現(xiàn)傳值。