There are a lot of discussions about removing notifications in the right way. For example:
I suggest you to remove observers in viewWillDisappear
(or viewDidDisappear
) and viewDidUnload
lifecycle methods. (Note: viewDidUnload
was deprecated and shouldn't be implemented in iOS6+; see iOS 6 - viewDidUnload migrate to didReceiveMemoryWarning?)
An important note:
viewDidUnload
is not guaranteed to be called - it's not a standard lifecycle method.
From Apple doc:
viewDidUnload
When a low-memory condition occurs and the current view controller’s
views are not needed, the system may opt to remove those views from
memory. This method is called after the view controller’s view has
been released and is your chance to perform any final cleanup.
Instead, dealloc
is called whenever the number of references for that receiver is zero.
Hope it helps.
Edit
For the sake of completeness you can see this link on how to avoid-nsnotification-removeobserver. The link provide some useful guidelines to remove observer (see also the comments). The author does it in viewDidAppear
/viewDidDisappear
methods since viewWillAppear
and viewWillDisappear
are not always called correctly in many applications.
It's your choice.
If you want to be sure to remove observers in the right way unregister it in dealloc
method or when the view is fully unloaded as you wrote in the second comment.
But be sure that dealloc
will be call in the future. In other words, as I already mentioned, if the controller continues to stay alive since some other object has a referenced to it, the method will never get called. In this case the controller continues to receive notifications.