If I add an observer to the [NSNotificationCenter defaultCenter] in my viewDidLoad should I be removing it in viewDidUnload?

link|improve this question

feedback

3 Answers

You should remove it in the dealloc method in addition to the viewDidUnload method.

The viewDid[Load|Unload] methods can be called multiple times during the lifetime of a UIViewController and you will want to avoid registering for a NSNotification multiple times. There are some cases where viewDidUnload will not be called, so you will need to unregister in the dealloc method too.

link|improve this answer
What cases is viewDidUnload not called but dealloc is? – morningstar Sep 30 '11 at 17:17
When the controller is popped from a navigation stack, for example. viewDidUnload is really only called when low-memory conditions force the view to be unloaded even though the controller is still around. – BJ Homer Sep 30 '11 at 17:59
feedback

You should remove it in dealloc method.

link|improve this answer
feedback

It seems to me viewDidUnload is the place to put it.

If the notification handler that gets called accesses any of the views managed by the view controller, that will either be an error or will cause the view to get reloaded unnecessarily. If your view is not being shown, then most likely the view controller doesn't need to be notified. If it does, at least check if the view is loaded before you make any changes to it. While the view is not loaded, you might still need to update the state of your view controller, for example change or dirty cached values, but don't update the view until it loads again.

Two, what happens if you don't removeObserver in viewDidUnload, and viewDidLoad gets called again? You call addObserver again. Probably doesn't hurt, the notification center can detect duplicate adds.

link|improve this answer
1  
IIRC, if you call addObserver twice with the same notification you will get two callbacks. – Jason Sep 30 '11 at 18:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.