NSNotificationCenter的使用

1.註冊NSNotificationCenter,並設置關聯html

1 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getArray:) name:@"getArray" object:nil];
2 
3 - (void)getArray:(NSNotification*)aNotification
4 {
5     //接收傳過來的數組,數組中存有Status類的對象
6     self.statusArr = aNotification.object;
7 }

2.消息發送(帶參)數組

1 //將tempArr數組經過消息中心發送到@"getArray" 這個名字的消息對應的方法中
2 [[NSNotificationCenter defaultCenter] postNotificationName:@"getArray" object:tempArr];

補充:IOS本地通知UILocalNotification的使用,參考地址->http://www.cnblogs.com/lan0725/p/3195263.htmlpost

相關文章
相關標籤/搜索