AppDelegate.h错误突然出现

时间:2013-03-03 06:44:08

标签: xcode compiler-errors appdelegate

我没有整天触及AppDelegate.h文件,突然间我得到3个错误......

//  AppDelegate.h

#import <UIKit/UIKit.h>  //!Expected selector for Objective-C method
                         //!Expected method body

@class ViewController;

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@property (strong, nonatomic) ViewController *viewController;  //!Unknown type name "ViewController" did you mean "UIViewController?

@end

我将上述代码中的错误作为注释。

我发现其他人过去也有过类似的错误,但我没有看到能够解决问题的答案。

我的根UIViewController名为ViewController。我怎么做才能突然出现这些错误?我今天所做的就是在UIPopoverController中添加一个新的ViewControler和xib。我刚刚让popover正常工作,这种情况开始发生。

约翰

1 个答案:

答案 0 :(得分:2)

您在源文件的行中引入了语法错误#import该头文件。