1. 程式人生 > >快速使用 NSNotificationCenter iOS通知

快速使用 NSNotificationCenter iOS通知

//建立一個訊息

 [[NSNotificationCenterdefaultCenter] addObserver:selfselector:@selector(notice:)name:@"123"object:nil];

//傳送訊息

 [[NSNotificationCenterdefaultCenter] postNotificationName:@"123"object:niluserInfo:nil];

 -(void)notice:(id)userInfo{

NSLog(@"zylmm");

// userInfo等於post 過來的userInfo

}

// 通知多對多(隨便玩,能實現好多東西。別忘記移除通知), 可以建立多個同名通知    可以多個頁面post一個通知(這句多餘)