Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm writing an Objective-C application using ARC and it's definitely a great improvement even though I never really minded retain counts. However, there's one case I couldn't find in the documentation on first glance.

If, in my init method, I call [self addObserver:self forKeyPath:…] to get notifications of when an ivar declared using an @property directive, do I need to explicitly call removeObserver… in the dealloc method, or does ARC handle key value observer cleanup? Similarly if I add my object to a NSNotificationCenter, does that need to be explicitly removed in dealloc?

share|improve this question

1 Answer

up vote 5 down vote accepted

You need to call removeObserver, ARC only automates retain counts. removeObserver does not impact the retain count

share|improve this answer
Thanks! That's what I initially thought but I wasn't sure. – jfm429 Nov 14 '11 at 19:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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