I have an iOS 5 ARC-based project, and am having difficulty about where I should be removing the observer for the NSNotificationCenter observations which I have registered within a UIViewController. Similar posts on SO have said this should be done in the -dealloc method. Even though this method is not required in ARC projects I have added it with the following code:

- (void)dealloc {

    [[NSNotificationCenter defaultCenter] removeObserver:self];

}

As a test, I open the UIViewController (within a UINavigationController), do some things which trigger the notifications, and then pop it off the stack by tapping the Back button. I then reopen the UIViewController, and do some more things to trigger the notifications, but notice that each callback is being called twice - an indication that the previous notifications have not been deregistered. Repeating this procedure just causes each callback to be called more than more times, so they appear to never be deregistering.

Any help would be appreciated!

link|improve this question

77% accept rate
I had the same problem - infuriating. After hours of debugging, a clean + build 'fixed' the problem. All the while I was stepping through the dealloc and call to -removeObsever, on both the iPhone and simulator. So if anyone else sees this rare problem, rebuild first. – emp Jan 10 at 0:07
How did you register in the first place? You need to show more code. – matt Feb 16 at 0:10
Does the NSNotification center retain the observer? – Nick Weaver Mar 13 at 10:39
feedback

2 Answers

It's pretty clear your dealloc method isn't being called (nor is the removeObserver call).

Why not remove your UIViewController's observer in the viewDidUnload: or viewWillDisappear: methods?

link|improve this answer
2  
viewDidUnload: is only called in low memory conditions, as far as I know. I also need the notification callbacks to still be fired if the view is off-screen, so that means I can't use viewWillAppear: and viewWillDisappear: – Skoota Dec 4 '11 at 2:56
b.t.w., if you're popping your view controller off the stack, that should be deallocing it. If it isn't, is something else retaining your view controller? Check instruments to be sure. Oh, and here is a related question that might be helpful for you – Michael Dautermann Dec 4 '11 at 3:35
feedback

If your dealloc isn't being called, it's likely because someone is still holding a reference to the view controller. Perhaps you need to mark something as __weak? You can use the allocations instrument to help track down what's holding on to your view controller.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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