添加通知
//UIColor *color;
//NSNotificationCenter 通知中心 ,單例類
//單例類:在整個(gè)應(yīng)用程序中只有一個(gè)對(duì)象,調(diào)用單利方法是,不管創(chuàng)建多少次,都是同一個(gè)對(duì)象
//defaultCenter 時(shí)通知中心的單利方法
NSNotificationCenter *notiCenter = [NSNotificationCenter defaultCenter];
NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:color,@"color", nil];
//postNotificationName 發(fā)通知
//參數(shù)1.通知的名字2.由誰(shuí)發(fā)送通知3.發(fā)通知是需要傳遞的參數(shù)
[notiCenter postNotificationName:@"changeColor" object:self userInfo:dic];
接收通知
//參數(shù)1.由誰(shuí)去接收通知2.接收到通知后,需要執(zhí)行的方法,如果方法需要傳參,參數(shù)是NSNotification的對(duì)象3.接受通知的名字,要和發(fā)送通知時(shí)名字保持一致(調(diào)頻一致);如果寫nil,默認(rèn)接受所有的通知4.是否指定通知的發(fā)送者,指定接受某一個(gè)對(duì)象發(fā)送的通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiceChangeColorNotification:) name:@"changeColor" object:nil];
//接收到通知執(zhí)行的方法
-(void)receiceChangeColorNotification:(NSNotification*)noti
{
//noti.name 通知的名字
//noti.object 通知的發(fā)送者
//noti.userInfo 發(fā)送通知傳遞的參數(shù)
NSLog(@"接受到了改變顏色的通知:%@__%@__%@",noti.name,noti.object,noti.userInfo);
NSDictionary *dic = noti.userInfo;
UIColor *color = [dic objectForKey:@"color"];
self.view.backgroundColor = color;
}
當(dāng)給一個(gè)已經(jīng)釋放的對(duì)象(如一個(gè)自定義類)發(fā)送通知時(shí) 系統(tǒng)會(huì)立即崩潰 解決辦法是 在自定義類的 dealloc 方法中移除通知
//移除通知
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"classOver" object:nil];
系統(tǒng)自帶的通知
//應(yīng)用程序進(jìn)入到后臺(tái)的通知
//UIApplicationDidEnterBackgroundNotification 程序進(jìn)圖后臺(tái)的通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationGotoBackGround) name:UIApplicationDidEnterBackgroundNotification object:nil];
//接受到鍵盤frame改變的通知
//UIKeyboardWillChangeFrameNotification 鍵盤frame將要改變的通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardFrameChange:) name:UIKeyboardWillChangeFrameNotification object:nil];