我在 dealloc 中有一个带有此方法调用的类:
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
[super dealloc];
}
将课程转换为 ARC 后,我会在哪里将自己从通知中心删除?它应该在 viewDidUnload 中吗?该通知用于侦听来自模式视图控制器的事件,因此我无法将此代码放入 viewWillDisappear。
我在 dealloc 中有一个带有此方法调用的类:
- (void)dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
[super dealloc];
}
将课程转换为 ARC 后,我会在哪里将自己从通知中心删除?它应该在 viewDidUnload 中吗?该通知用于侦听来自模式视图控制器的事件,因此我无法将此代码放入 viewWillDisappear。