Closed carlospuk closed 13 years ago
In your dealloc method, you only need to do this once:
[[NSNotificationCenter defaultCenter] removeObserver:self
...as this method removes the observer for all messages.
Therefore the next (identical) line can be removed.
Carlos
Yep, good catch.
In your dealloc method, you only need to do this once:
...as this method removes the observer for all messages.
Therefore the next (identical) line can be removed.
Carlos