我有以下代码块,作为iOS one view应用程序AppDelegate.h
的内容:
//
// AppDelegate.h
// kompas
//
// Created by Attention8 Aps on 2/6/12.
// Copyright (c) 2012 Attention8. All rights reserved.
//
#import <UIKit/UIKit.h>
@class ViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *viewController;
@end
这会产生错误“预期已识别或'('”在线上 @class ViewController
我已经尝试将它与AppDelegate.h从一个新开始的项目中进行比较,但我不能因为上帝的爱而发现错误。修补其他文件后出现了错误,但我似乎无法找到这个问题。
对于可能导致这种情况的任何帮助将不胜感激。
答案 0 :(得分:2)
这可能是另一个文件的问题。尝试浏览所有其他类,并删除任何警告/错误。
答案 1 :(得分:0)
尝试在vi中打开此文件。有时隐形字符会导致此类错误。