我有一个BaseViewController,我的所有UiViewController都可以扩展。
这个BaseViewController也使用AppDelegate,因此我将它导入:
@interface BaseViewController : UIViewController{
AppDelegate *appDelegate;
}
在AppDelegate
中,我需要使用方法applicationDidBecomeActive
。在方法中,我想使用BaseViewController的方法。
所以我导入了BaseViewController:
#import "BaseViewController.h"
然后我在BaseViewController
中收到了编译错误:
Unkown type AppDelegate
有什么问题?
答案 0 :(得分:1)
,添加以下行:
@class AppDelegate
在顶部然后重新尝试