I have decided to load my views programmatically, so putting:

int ret = UIApplicationMain(argc, argv, nil, nil);

Would not work. I do have a ViewController and an AppDelegate, though. What would be the proper use of UIApplicationMain to use a ViewController and an AppDelegate.
PS I am NOT using XCode or Interface Builder, I am developing on the toolchain.

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

This function is declared as

int UIApplicationMain (
   int argc,
   char *argv[],
   NSString *principalClassName,
   NSString *delegateClassName
);

Since you did not subclass UIApplication, pass nil to the 3rd argument. But you have a custom UIApplicationDelegate. So pass its class name to the 4th argument.

int retval = UIApplicationMain(argc, argv, nil, @"AppDelegate");
link|improve this answer
What would be the benefit of subclassing UIApplication? – Mohit Deshpande May 26 '10 at 21:12
@Mohit: To replace some default behavior of UIApplication, e.g. sendAction:to:from:forEvent:. – KennyTM May 26 '10 at 21:16
7  
Replace @"AppDelegate" with NSStringFromClass([AppDelegate class]) to avoid the magic string in case you ever rename AppDelegate to something else. – George Feb 19 '11 at 16:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.