I want to access the App delegate in an iPhone app. I can do this from code either in
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)
or
NSObject <UIApplicationDelegate> *appDelegate = (NSObject <UIApplicationDelegate> *)[[UIApplication sharedApplication] delegate];
Is there any way to access the App Delegate from the binary of an application instead of using Objective-C source code?