iOS 中的觀察者模式之通知中心
IOS中通知中心NSNotificationCenter應用總結
零、觀察者模式
A對B的變化感興趣,就注冊為B的觀察者,當B發生變化時通知A,告知B發生了變化。這就是觀察者模式。
觀察者模式定義了一種一對多的依賴關系,讓多個觀察者對象同時監聽某一個主題對象。這個主題對象在狀态上發生變化時,會通知所有觀察者對象,使它們能夠自動更新自己或者做出相應的一些動作。
在IOS開發中我們可能會接觸到觀察者模式的實作方式,有NSNotificationCenter、KVO等
一、了解幾個相關的類
1、NSNotification
這個類可以了解為一個消息對象,其中有三個成員變量。
1) 這個成員變量是這個消息對象的唯一辨別,用于辨識消息對象。
@property (readonly, copy) NSString *name;
2)這個成員變量定義一個對象,可以了解為針對某一個對象的消息。
@property (readonly, retain) id object;
3)這個成員變量是一個字典,可以用其來進行傳值。
1 @property (readonly, copy) NSDictionary *userInfo;
NSNotification的初始化方法:
1 - (instancetype)initWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo;
2
3 + (instancetype)notificationWithName:(NSString *)aName object:(id)anObject;
4
5 + (instancetype)notificationWithName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
*注意:官方文檔有明确的說明,不可以使用init進行初始化*
2、NSNotificationCenter
1)概念
1> 通知中心
這個類是一個通知中心,使用單例設計,每個應用程式都會有一個預設的通知中心。用于排程通知的發送的接受。
以NSNotificationCenter為中心,觀察者往Center中注冊對某個主題對象的變化感興趣,主題對象通過NSNotificationCenter進行變化廣播。所有的觀察和監聽行為都向同一個中心注冊,所有對象的變化也都通過同一個中心向外廣播。
2>具體實作
添加一個觀察者,可以為它指定一個方法,名字和對象。接受到通知時,執行方法。
- (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;
發送通知消息的方法
- (void)postNotification:(NSNotification *)notification;
- (void)postNotificationName:(NSString *)aName object:(id)anObject;
- (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
移除觀察者的方法
- (void)removeObserver:(id)observer;
- (void)removeObserver:(id)observer name:(NSString *)aName object:(id)anObject;
通知中心執行順序:
(1)通過NSNotificationCenter的addObserver:selector:name:object接口來注冊通知中心
(2)被觀察的對象,通過postNotificationName:object:userInfo:向通知中心發送某一類型通知。
(3)當有通知來的時候,Center會調用觀察者注冊的接口來廣播通知,同時傳遞存儲着更改内容的NSNotification對象。
(4)當該通知不再使用時,可以在dealloc方法裡removeObserver:删除觀察者
*幾點注意:*
1、如果發送的通知指定了object對象,那麼觀察者接收的通知設定的object對象與其一樣,才會接收到通知,但是接收通知如果将這個參數設定為了nil,則會接收一切通知。
2、觀察者的SEL函數指針可以有一個參數,參數就是發送的死奧西對象本身,可以通過這個參數取到消息對象的userInfo,實作傳值
二、通知的使用流程
首先,我們在需要接收通知的地方注冊觀察者,比如:
//擷取通知中心單例對象
NSNotificationCenter * center = [NSNotificationCenter defaultCenter];
//添加目前類對象為一個觀察者,name和object設定為nil,表示接收一切通知
[center addObserver:self selector:@selector(doAction:) name:@"pssbaba" object:@"1"];
之後,在我們需要時發送通知消息
NSDictionary *userInfo = @{@"name" : @"彭爸爸"};
[[NSNotificationCenter defaultCenter] postNotificationName:@"pengbaba" object:@"1" userInfo:userInfo];
我們可以在回調的函數中取到notification内容,如下:
- (void)doAction:(NSNotification *)notification {
NSLog(@"object = %@",notification.object);
NSLog(@"name = %@",notification.name);
NSLog(@"userInfo = %@",notification.userInfo);
}
移除觀察者
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"pengbaba" object:@"1"];
}
列印結果如下:
發表于
2016-05-19 16:38
Coder丶PSS
閱讀(2033)
評論(1)
編輯
收藏
舉報