このコードは以下の にありますUIViewController
。それは理にかなっていますか?
- (void)dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)viewDidUnload {
[super viewDidUnload];
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
それとも、dealloc コードで十分でしょうか?