[iOS开发]通知传值
Posted Billy Miracle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[iOS开发]通知传值相关的知识,希望对你有一定的参考价值。
在第一个视图控制器的viewWillAppear:中,注册通知 添加观察者来指定一个方法,名称和对象,接受到通知时执行这个指定的方法
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receive:) name:@"send" object:nil];
(注意名字name)
在下面实现这个方法:
- (void)receive:(NSNotification *)notification {
NSDictionary *dict = notification.userInfo;
_firstLabel.text = dict[@"first"];
_secondLabel.text = dict[@"second"];
}
查看定义:
+ (instancetype)notificationWithName:(NSNotificationName)aName object:(nullable id)anObject userInfo:(nullable NSDictionary *)aUserInfo;
最后一个参数userInfo一定要是字典。
在第二个视图控制器的返回的方法中,创建通知对象并在通知中心发布通知:
- (void)back {
//创建通知对象
NSNotification *notification = [NSNotification notificationWithName:@"send" object:self userInfo:@{@"first":_firstTextField.text,@"second":_secondTextField.text}];
//注意name
//通知中心发布通知
[[NSNotificationCenter defaultCenter] postNotification:notification];
[self dismissViewControllerAnimated:YES completion:nil];
}
最后再回到第一个视图控制器中,移除观察者:
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"send" object:nil];
}
(注意名字name)
上面三个名字注意一定要一致。
以上是关于[iOS开发]通知传值的主要内容,如果未能解决你的问题,请参考以下文章
iOS 页面跳转传值,属性传值,代理传值,代码块传值,单例传值,通知传值