调用从AppDelegate导入AppDelegate的UIViewController方法

时间:2013-01-06 07:06:52

标签: objective-c uiviewcontroller appdelegate

我有一个BaseViewController,我的所有UiViewController都可以扩展。

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

@interface BaseViewController : UIViewController{
    AppDelegate *appDelegate;  
}

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

所以我导入了BaseViewController:

#import "BaseViewController.h"然后我在BaseViewController中收到了编译错误:

Unkown type AppDelegate

有什么问题?

1 个答案:

答案 0 :(得分:1)

在.h文件中

,添加以下行:

@class AppDelegate

在顶部然后重新尝试