第1步:在发送者中实现一个方法进行发送通知。
NSDictionary *dict = @{@"color":color, @"userName":@"haha"};
[[NSNotificationCenter defaultCenter] postNotificationName:@"changeBgColor" object:nil userInfo:dict];
//postNotificationName:之后的参数就是这个通知的名字,要和要和接收者中的名字一样,才能让接收者正确接收。
//object:接收对象
//userInfo: 携带的参数,在例子中我携带了一个字典,因为有时候我们要传递的参数不只是一个,所以把东西全部放在通知里面,在接收者中,根据字典里面的键来取出里面的值。
//在字典中传递的color是一个已经实例化后的对象。
第2步:在接收者中注册通知,也就是接收者要进行接收通知,接收通知和发送通知的名字要一致。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeBgColor:) name:@"changeBgColor" object:nil];
//注:务必让接收者中name后面的参数和发送者中的name后面的参数一样。
第3步:在接收者中实现通知中的方法
// 参数类型是NSNotification
- (void)changeBgColor:(NSNotification *)notification{
NSLog(@"接受到通知,改变背景颜色");
// 如果是传多个数据,那么需要哪个数据,就对应取出对应的数据即可
self.view.backgroundColor = notification.userInfo[@"color"];
UILabel *label = (UILabel *)[self.view viewWithTag:100];
label.text = notification.userInfo[@"userName"];
}
附:常用传值方法:
block传值
代理传值
正向传值
通知中心传值
单例类传值