iOS開發基礎篇--NSNotificationCenter使用小結

邏輯教育-楚陽發表於2018-11-19

前言

最近公司組織兩個星期的新人培訓,事情安排的滿滿的,週末都沒有。說好的一個星期六更新的部落格中斷了,讓大家久等了,現在培訓結束,終於又可以安安靜靜的做一個程式設計師了,好開心。。。

這是一個我的iOS交流群:624212887,群檔案自行下載,不管你是小白還是大牛熱烈歡迎進群 ,分享面試經驗,討論技術, 大家一起交流學習成長!希望幫助開發者少走彎路。

一、NSNotification和Delegate的聯絡和區別

眾所周知,IOS中經常會使用到NSNotification和delegate來進行一些類之間的訊息傳遞。言歸正傳,這兩種有什麼區別呢?
NSNotification就是IOS提供的一個訊息中心,由一個全域性的defaultNotification管理應用中的訊息機制。通過公開的API可以看出,這裡面使用了是一個觀察者,通過註冊addObserver和解除註冊removeObserver來實現訊息傳遞。蘋果文件特別提出,在類析構的時候,要記得把removeObserver,不然就會引發崩潰,所以NSNotifcation的使用是沒有retain+1的,NSNotification是一對多的。
至於Delegate,很簡單,就是通過增加一個指標,然後把需要呼叫的函式通過delegate傳遞到其他類中,來得很直截了當。不需要通過廣播的形式去實現,但是,delegate的形式只能是一對一,不能實現一對多。

在什麼情況下使用Delegate和NSNotifiation呢?
從效率上看Delegate是一個很輕量級的,相對delegate,NSNotification卻是一個很重量級的,效率上delegate明顯要比Noticication高。一般情況我們會這樣使用。
場景一:
A擁有B,然後B中的一些操作需要回撥到A中,這時候就簡單的通過delegate回撥到A。因為B是A建立的,B可以很直接的把delegate賦值A。
場景二:
A和B是兩個不相干的關係,A不知道B,B也不知道A,那麼這時候如果通過delegate就沒辦法做到,會相對複雜。所以可以通過NSNotifcation去做一些訊息傳遞。
所以使用delegate的情況是兩者有直接的關係,至於一方知道另一方的存在。而NSNotifcation一般是大家不知道對方的存在,一般是使用跨模組的時候使用。在使用的時候,使用delegate可能需要多寫一些delegate去實現,程式碼量比較多。NSNotication只要定義相關的NotificationName就可以很方便的溝通。兩者各有所長。

二、監聽系統自帶的NSNotification

系統裡定義了許多的 XxxNotification 名稱,其實只要 Cmd+Shift+O 開啟 Open Quickly,輸入 NSNotification 或者 UINotification 可以看到許多以 Notification 結尾的變數定義,由變數名稱也能理解在什麼時候會激發什麼事件,一般都是向 [NSNotificationCenter defaultCenter] 通知的。

iOS開發基礎篇--NSNotificationCenter使用小結
1.png

使用步驟

第一步:註冊系統監聽事件

    //在NSNotificationCenter中註冊鍵盤彈出事件
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardUpEvent:) name:UIKeyboardDidShowNotification object:nil];
    //在NSNotificationCenter中註冊鍵盤隱藏事件
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardDownEvent:) name:UIKeyboardDidHideNotification object:nil];
    //在NSNotificationCenter中註冊程式從後臺喚醒事件
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(becomeActive:) name:UIApplicationDidBecomeActiveNotification object:nil];
複製程式碼

第二步:事件觸發後的處理

/**
 *  彈出鍵盤事件觸發處理
 *
 *  @param notification
 */
-(void)keyboardUpEvent : (NSNotification *)notification{
    //NSLog(@"鍵盤彈出事件觸發==%@",notification);
    NSLog(@"鍵盤彈出事件觸發");
}

/**
 *  鍵盤隱藏事件觸發處理
 *
 *  @param notification
 */
-(void)keyboardDownEvent : (NSNotification *)notification{
    //NSLog(@"鍵盤隱藏事件觸發==%@",notification);
    NSLog(@"鍵盤隱藏事件觸發");
}

/**
 *  程式從後臺喚醒觸發處理
 *
 *  @param notification
 */
-(void)becomeActive: (NSNotification *)notification{
    NSLog(@"程式從後臺喚醒觸發處理");
}
複製程式碼

第三步、在dealloc中解除監聽

/**
 *NSNotificationCenter 注意點:每一次在接受者物件中需要delleac把它銷燬掉。
 */
-(void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
複製程式碼

三、自定義NSNotification

這裡我使用的一個例項為:在ViewController中定義一個按鈕,點選該按鈕,同時改變兩個自定義View中的內容。

使用步驟


第一步、在ViewController中生成一個按鈕,兩個自定義View

    UIButton *postMsgBtn = [[UIButton alloc] initWithFrame:CGRectMake(50, 200, 100, 40)];
    [postMsgBtn setTitle:@"傳送訊息" forState:UIControlStateNormal];
    postMsgBtn.backgroundColor = [UIColor grayColor];
    [postMsgBtn addTarget:self action:@selector(postMsg:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:postMsgBtn];

    MyView *view = [[MyView alloc] initWithFrame:CGRectMake(50, 250, 100, 50)];
    [self.view addSubview:view];

    MyView *view2 = [[MyView alloc] initWithFrame:CGRectMake(50, 320, 100, 50)];
    [self.view addSubview:view2];
複製程式碼

第二步、點選按鈕,傳送Notification

-(void)postMsg: (UIButton *)btn{
    [[NSNotificationCenter defaultCenter] postNotificationName:NOTIFICATION_MESSAGE_NAME object:nil userInfo:@{@"msg":@"jingming1"}];
}
複製程式碼

第三步、在自定義View中註冊監聽事件

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(acceptMsg:) name:NOTIFICATION_MESSAGE_NAME object:nil];
複製程式碼

第四步、處理監聽事件

-(void)acceptMsg : (NSNotification *)notification{
    NSLog(@"%@",notification);
    NSDictionary *userInfo = notification.userInfo;
    _label.text = [userInfo objectForKey:@"msg"];
}
複製程式碼

第五步、在dealloc中解除監聽

-(void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self];
}
複製程式碼

四、參考文獻

這是一個我的iOS交流群:624212887,群檔案自行下載,不管你是小白還是大牛熱烈歡迎進群 ,分享面試經驗,討論技術, 大家一起交流學習成長!希望幫助開發者少走彎路。

如果覺得對你還有些用,就關注小編+喜歡這一篇文章。你的支援是我繼續的動力。

下篇預告:仿射變換(CGAffineTransform)使用小結

文章來源於網路,如有侵權,請聯絡小編刪除。


相關文章