通知
//獲取通知中心單例對(duì)象
NSNotificationCenter * center = [NSNotificationCenter defaultCenter];
//添加當(dāng)前類對(duì)象為一個(gè)觀察者,name和object設(shè)置為nil,表示接收一切通知
[center addObserver:self selector:@selector(notice:) name:@"123" object:nil];
//創(chuàng)建一個(gè)消息對(duì)象
NSNotification * notice = [NSNotification notificationWithName:@"123" object:nil userInfo:@{@"1":@"123"}];
//發(fā)送消息
[[NSNotificationCenter defaultCenter]postNotification:notice];
-(void)notice:(id)sender{
NSLog(@"%@",sender);
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者