Which class or delegate should I sub-class to dig deeper into the call-stack of an IOS application startup sequence / loading sequence, specifically: Who calls this function?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
Is there a way to sub-class the object calling this function so that I can see what’s happening next after this function?
Read over the UIApplication Class Reference, UIApplicationDelegate Protocol Reference and application:didFinishLaunchingWithOptions.