How does inheritance of NSNotificationCenter observers work? I have a parent class that several other classes end up subclassing. The parent class registers itself as an observer for a specific notification. I was under the impression that children would also be registered as observers as long as you invoke the super method where the registration happens. I happen to put it into viewDidLoad.
Do I need to re-register child classes are observers also and re-implement their delegate methods?