In the BubbleLevel example from apple they implement an +initialize method. They say:
+initialize is invoked before the class receives any other messages, so it is a good place to set up application defaults
But when I try to look it up in the UIApplicationDelegate protocol documentation, they don't even mention that +initialize method. Are there more "hidden" methods I should know about? And how can I find them when they don't appear in the documentation of the protocol or class? Os is that inherited from somewhere else? How can I find out from where?