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

前言

最近公司組織兩個星期的新人培訓,事情安排的滿滿的,週末都沒有。說好的一個星期一更新的博客中斷了,讓你們久等了,如今培訓結束,終於又能夠安安靜靜的作一個程序員了,好開心。。。程序員

1、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就能夠很方便的溝通。二者各有所長。網絡

這是一個個人iOS交流羣:624212887,羣文件自行下載,無論你是小白仍是大牛熱烈歡迎進羣 ,分享面試經驗,討論技術, 你們一塊兒交流學習成長!但願幫助開發者少走彎路。——點擊:加入ide

2、監聽系統自帶的NSNotification

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

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];
}

3、自定義NSNotification

這裏我使用的一個實例爲:在ViewController中定義一個按鈕,點擊該按鈕,同時改變兩個自定義View中的內容。post

使用步驟

第一步、在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];
}

4、參考文獻

這是一個個人iOS交流羣:624212887,羣文件自行下載,無論你是小白仍是大牛熱烈歡迎進羣 ,分享面試經驗,討論技術, 你們一塊兒交流學習成長!但願幫助開發者少走彎路。——點擊:加入學習

若是以爲對你還有些用,就關注小編+喜歡這一篇文章。你的支持是我繼續的動力。ui

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

文章來源於網絡,若有侵權,請聯繫小編刪除。指針

相關文章
相關標籤/搜索