-2

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?

j0k
  • 22,600
  • 28
  • 79
  • 90
ramo
  • 609
  • 2
  • 8
  • 14
  • What are you doing messing with Binary? – Undo Apr 04 '13 at 17:48
  • This question doesn't quite make sense. What do you mean by 'accessing it from binary'? –  Apr 04 '13 at 17:49
  • I need this in cases when I don't have the source code and only have the binary of the application. So my question is if I only have binary of an application, is there anyway to access the app delegate object? – ramo Apr 04 '13 at 18:02

1 Answers1

1

I need this in cases when I don't have the source code and only have the binary of the application. So my question is if I only have binary of an application, is there anyway to access the app delegate object?

NO

You can not.

Community
  • 1
  • 1
Ileana D'Cruz
  • 274
  • 3
  • 12