移動與我的比賽一點我想補充的困難等自定義枚舉 - 未知類型
來到Objective-C的從C#,我希望我能有一些枚舉這樣
typedef enum GameTypes{
Classic = 0,
Unlimited,
Timed,
Expert,
} GameType;
typedef enum GameDifficultys
{
Easy = 0,
Medium,
Hard,
} GameDifficulty;
再有這樣的事情:
GameType gameType = GameTypes.Classic;
GameDifficulty gameDifficulty = GameDifficultys.Easy;
但是我得到這個以下錯誤:
Unknown type name "GameType"/"GameDifficulty"
這可能就像它是在C#中嗎?
感謝