我有一个我所有 UiViewController 扩展的 BaseViewController。
这个 BaseViewController 也使用 AppDelegate,因此我像这样导入它:
@interface BaseViewController : UIViewController{
AppDelegate *appDelegate;
}
在AppDelegate
,我需要使用一个方法applicationDidBecomeActive
。在方法中我想使用 BaseViewController 的方法。
所以我导入了 BaseViewController:
#import "BaseViewController.h"
但后来我得到一个编译错误BaseViewController
:
Unkown type AppDelegate
怎么了?