当我移动到另一个视图时,我可以使用哪种方法来捕捉事件?
到目前为止我尝试过的并且无效:viewWillDisappear:
,willMoveToParentViewController:
,dealloc:
我正在尝试取消注册通知的观察者。
答案 0 :(得分:0)
viewDidUnload
方法现已弃用。
如果您想取消注册观察者的通知,请尝试使用dealloc
方法:
<强> E.g。强>
(void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
//or
[[NSNotificationCenter defaultCenter] removeObserver:self
name:@"notifiactionName" object:nil];
}