gpt4 book ai didi

iphone - postNotificationName : called 时未发送 NSNotification

转载 作者:太空狗 更新时间:2023-10-30 03:18:30 26 4
gpt4 key购买 nike

我正在尝试通过 addObserverpostNotificationName 获得一个使用 NSNotificationCenter 的实例,但我无法弄清楚为什么它不会'不工作。

我有 2 行代码来添加观察者并在 2 个不同的类中发送消息

[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(newEventLoaded:) name:@"Event" object:nil];

[[NSNotificationCenter defaultCenter]postNotificationName:@"Event" object:self];

如果我将名称设置为 nil 它工作正常,因为它只是一个广播,当我尝试定义一个通知名称时,消息永远不会通过。

最佳答案

我的所有代码都使用了 NSNotifications,如下所示:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(updateView) name:@"ScanCompleted" object:nil];

[[NSNotificationCenter defaultCenter] postNotificationName:@"ScanCompleted" object:nil];

第一个是注册通知,第二个是发布通知。

关于iphone - postNotificationName : called 时未发送 NSNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2113452/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com