Call a function in AppDelegate?

前端 未结 4 656
暖寄归人
暖寄归人 2020-12-19 13:14

Following the solution (the highest-voted answer actually) at UITextField Example in Cocos2d, I managed to do it except the line

[[[UIApplication sharedAppli         


        
4条回答
  •  生来不讨喜
    2020-12-19 14:01

    Right now, your class doesn't know anything about your delegate's methods. You need to import your delegate into your implementation, not your interface (to avoid cycled imports).

    For example,

    #import "AppDelegate.h"
    

    Then you should cast the returned delegate in your nested method call to be your delegate type. For example:

    [(AppDelegate *)[[UIApplication sharedApplication] delegate] specifyStartLevel];
    

提交回复
热议问题