.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
このエラーが発生するのはなぜですか (上記のコードのコメントを参照してください)。クラスのインスタンス変数宣言の下では問題なく動作しますが、インスタンス変数の 1 つの型として使用したいと考えています。