0
我第一次使用Cocos2D並試圖設置我的初始場景。我只是遵循本教程http://www.raywenderlich.com/15267/how-to-make-a-platform-game-like-super-mario-brothers-part-2並得到它完美的工作,我甚至複製了代碼在GameLayer在爲我的LEVEL0要使用的模板,改變適當值,以適應。預期的標識符或'('私人實例變量的錯誤
我得到我的私人接口錯誤`預期的標識符「(」前「{」令牌
#import "Level0.h"
#import "Player.h"
@interface Level0()
{ /// this is where I'm getting the error
CCTMXTiledMap* map;
Player* player;
CCTMXLayer* walls;
CCTMXLayer* portalWalls;
BOOL gameOver;
}
@end
@implementation Level0
....
我已經編寫了一百萬次私有接口,它甚至看起來與教程項目相同。有誰知道爲什麼t他會標記一個錯誤?
問題實際上是在其中一個頭文件中。 –