Objective-C 键值观察

发布于 2024-08-26 08:03:31 字数 445 浏览 6 评论 0原文

[sessionController.currentSession addObserver:self
                            forKeyPath:@"sessionState"
                               options:(NSKeyValueChangeSetting)
                               context:NULL];

这似乎不起作用。

此代码所在的类知道 sessionController 并可以访问 currentSession。 currentSession 的 sessionState 变量是我想要观察的。按照我在这里所做的方式设置要观察的对象是禁止吗?

如果可以的话,有什么方法可以做到呢?缺少给观察对象一个 currentSession 变量。

[sessionController.currentSession addObserver:self
                            forKeyPath:@"sessionState"
                               options:(NSKeyValueChangeSetting)
                               context:NULL];

This doesn't seem to be working.

The class where this code goes knows about the sessionController and has access to the currentSession. The sessionState variable of the currentSession is what I want to observe. Is it verboten to set the object to be observed in the way I've done it here?

If so, what is the way to do it? Short of giving the observing object a currentSession variable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见终念 2024-09-02 08:03:31

调用该方法时,sessionController.currentSession 是否包含有效值?

这是一个常见的陷阱,向 null 发送消息将会失败且无提示。

Does sessionController.currentSession contain a valid value when you call the method?

This is a common pitfall, and sending a message to null will fail silently.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文