0

我有一个我所有 UiViewController 扩展的 BaseViewController。

这个 BaseViewController 也使用 AppDelegate,因此我像这样导入它:

@interface BaseViewController : UIViewController{
    AppDelegate *appDelegate;  
}

AppDelegate,我需要使用一个方法applicationDidBecomeActive。在方法中我想使用 BaseViewController 的方法。

所以我导入了 BaseViewController:

#import "BaseViewController.h"但后来我得到一个编译错误BaseViewController

Unkown type AppDelegate

怎么了?

4

1 回答 1

1

在您的 .h 文件中,添加以下行:

@class AppDelegate

在顶部 然后重试

于 2013-01-06T07:15:16.753 回答