The iPhone Reference Libary - UIApplication says I can subclass UIApplication, but if I try this I will get an exception:
*** Terminating app due to uncaught
Did you pass the name of your subclass to UIApplicationMain? Let's assume you have
@interface MyUIApp : UIApplication ...
then in main() you should do:
NSString* appClass = @"MyUIApp"; NSString* delegateClass = nil; int retVal = UIApplicationMain(argc, argv, appClass, delegateClass);