super dealloc on ARC subclasses
In ARC I'm aware that you do not call [super dealloc] in any overrides of -dealloc , so typically I remove observers and timers in there without doing so. However, if I were to subclass a view that I made that releases observation info in -dealloc without calling [super dealloc] in the subclass' implementation of the method, would the super implementation be called automatically to release the observation info handled by the superclass, or would it leak? herzbube The superclass' implementation of dealloc is automatically called (as far as I know, the compiler inserts the statement [super