通知传值

通知传值我刚开始学的时候是看新浪博客的牛凯旋的,下面是根据那篇文章改编的

通知 是在跳转控制器之间常用的传值代理方式,除了代理模式,通知更方便、便捷,传值的方式较于代理的一对一而言,它的传值是一对多的。一个通知可以多个使用。但是相对于代理而言,通知传值的速率较慢。

下面是一个简单的Demo实现通知的跳转传值.

输入所要发送的信息 ,同时将label的值通过button方法调用传递,

- (IBAction)buttonClick:(id)sender {

//添加字典,将label的值通过key值设置传递

NSDictionary*dict =[[NSDictionaryalloc]initWithObjectsAndKeys:self.textFieldOne.text,@"textOne",self.textFieldTwo.text,@"textTwo",nil];

//创建通知

NSNotification*notification =[NSNotificationnotificationWithName:@"tongzhi"object:niluserInfo:dict];

//通过通知中心发送通知

[[NSNotificationCenterdefaultCenter]postNotification:notification];

[self.navigationControllerpopViewControllerAnimated:YES];

}

在发送通知后,在所要接收的控制器中注册通知监听者,将通知发送的信息接收

- (void)viewDidLoad {

[superviewDidLoad];

//注册通知

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

}

- (void)tongzhi:(NSNotification*)text{

NSLog(@"%@",text.userInfo[@"textOne"]);

NSLog(@"-----接收到通知------");

}

移除通知:removeObserver:和removeObserver:name:object:

其中,removeObserver:是删除通知中心保存的调度表一个观察者的所有入口,而removeObserver:name:object:是删除匹配了通知中心保存的调度表中观察者的一个入口。

这个比较简单,直接调用该方法就行。例如:

[[NSNotificationCenter defaultCenter] removeObserver:observer name:nil object:self];

注意参数notificationObserver为要删除的观察者,一定不能置为nil。

你可能感兴趣的:(通知传值)