.h 文件示例:
@interface MyClass : NSObject
typedef NS_ENUM(int, myType) {
Something,
SomethingElse,
SomethingElseElse,
YetAnotherSomethingElse
};
{ //Error On This Line: Expected Identifier or '('
int aInstanceVariable;
}
//Some Methods go here
@end
为什么我会收到该错误(请参阅上面代码中的注释)?它在类实例变量声明下工作正常,但我想将它用作我的实例变量之一的类型。