Objective-C 键值观察
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用该方法时,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.