我是靠谱客的博主 简单狗,最近开发中收集的这篇文章主要介绍[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开发]通知传值所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(57)

评论列表共有 0 条评论

立即
投稿
返回
顶部