我正在尝试使用 xcode 模拟器构建和测试应用程序,但在构建过程中,我在 ACAccount.h、ACAccountType.h 等中遇到错误。“奇怪的事情”(至少对我来说,因为我是全新的使用 xcode) 是,如果我单击有错误的 .h 文件,它们不会出现在项目代码下,而是出现在
Simulator - iOS 7.1-> Frameworks -> Accounts -> ACAccount.h
这是不可修改的。
错误示例如下:
线:
@class ACAccountType,ACAccount Credential; --> Illegal interface qualifier
ACCOUNTS_CLASS_AVAILABLE(NA, 5_0)
@interface ACAccount : NSObject -->Objective-C declarations may only appear in global scope
如果 .h 是预定义文件。我该如何解决这些错误?
提前谢谢了!