Xcode 5.1.1 AppDelegate.h和main.m错误

时间:2014-07-30 15:39:19

标签: ios objective-c xcode5

我在几周前创建了一个项目,并于今天开放。当我离开项目时没有错误,一切正常,但现在我有三个错误,不知道为什么。

这是我的AppDelegate.h:

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@end

这是我的主人:

#import <UIKit/UIKit.h>

#import "AppDelegate.h"

int main(int argc, char * argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
    }
}

这里有错误:

/main.m: Semantic Issue Use of undeclared identifier 'AppDelegate'
AppDelegate.h: Parse Issue Expected identifier or '('
AppDelegate.h:  Parse Issue '@end' must appear in an Objective-C context

0 个答案:

没有答案