In this post about Garbage Collection the author states:
in Mac OS X 10.6 and later NSNotificationCenter is weak referenced so you no longer need do to the following in your code
[[NSNotificationCenter defaultCenter] removeObserver:self name:kObservationName object:nil];
Is this officially documented somewhere? The documentation of removeObserver:
still says:
Be sure to invoke this method (or removeObserver:name:object:) before notificationObserver or any object specified in addObserver:selector:name:object: is deallocated.