gpt4 book ai didi

ios - NSNotificationCenter addObserver 被忽略

转载 作者:行者123 更新时间:2023-11-29 12:47:58 28 4
gpt4 key购买 nike

在 XCode 5.1(和 CorePlot 1.4)之前,有两个对象可以正常接收 NSNotifications。但是,对于 XCode 5.1.1 (Coreplot 1.5),我发现如果 addObserver 调用在 init 方法中,它实际上不会被注册(仅针对这两个类,它在不同类的父对象中工作)。我什至在调用前后放置了一个 NSLog 以确保代码仍然有效。这些对象都被它们的共享父对象强引用,并且它们的父对象毫无问题地接收到必要的通知。而且,我在 dealloc 中有一个 NSLog,其中 removeObserver 是 - 它不会提前调用,因为对象已正确保留。

//The object is a CorePlot CPTGraphHostingView
- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
//other code setting up a few private ivar primitive arrays and values

//this is where the call was (there are actually 3 Observer calls made)
[[NSNotificationCenter defaultCenter]
addObserver: self
selector: @selector(recordUpdated)
name: @"recordUpdated"
object: nil];

//then this is called before the end
[self prepareGraph];

//this is where I moved it
[self startListening];
}
return self;
}

同样,自从我上次使用 XCode 5.1(和 CorePlot 1.4)编译以来,发送通知的对象或这两个类的代码没有任何变化。并且在父级的 init 中使用了相同的调用,并且运行良好。我昨晚唯一的解决方案是将 addObserver 调用重构为一个新方法,并在 init 结束时调用该方法。

但是,我不明白为什么这是必要的。任何人能想到一个原因是 addObserver 放在 init 中间会被“忽略”,但是当在 init 调用的另一个方法中时,有用吗?

编辑和注释:

我添加了更多代码来显示 init.我还添加了注释,它是 CorePlot 的图形 View ,并且 CorePlot 最近也更新到 1.5(我忘记了)——这可能是问题的根源。

lead_the_zeppelin 的建议是重新分配它,这似乎是可能的。但是从 NSNotificationCenter 调用一个 - 现在 - dealloc 的对象不会使程序崩溃(注意,dealloc 没有被调用 - 我在那里有一个 NSLog)?我可以通过在 init 中打印对象实例字符串来轻松测试它,然后再进行测试。我昨晚确实测试了这个,询问了实例,但我认为我没有将该位复制到 init 中。

最佳答案

只要您设置托管图或 collapsesLayers 属性,Core Plot 托管 View 就会将自己作为所有通知的观察者移除。请在 issue tracker 上发布错误报告如果您希望我们修复它。

与此同时,在设置图形后添加观察者。

关于ios - NSNotificationCenter addObserver 被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23155375/

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