//创建一个消息
[[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一个通知(这句多余)