How to subclass UIApplication?

前端 未结 4 1423
清酒与你
清酒与你 2020-11-30 10:27

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         


        
4条回答
  •  一生所求
    2020-11-30 11:01

    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);
    

提交回复
热议问题