2013-11-22 148 views
0

我剛剛對此進行了編碼,並彈出了一個錯誤(使用未聲明的標識符'RandomPosition')。我很新的Xcode和我需要幫助,請......這些都是行:xCode 5中未聲明的標識符

RandomPosition = arc4random() %25; 
    RandomPosition = RandomPosition + 75; 
    Obstacle.center = CGPointMake(570, RandomPosition); 

    RandomPosition = arc4random() %1; 
    Floor.center = CGPointMake(550, 1); 

此外,將任何你們知道如何在Xcode中人物跳躍?

非常感謝!

+0

歡迎來到Stackoverflow。快速搜索產生* [this](http://stackoverflow.com/questions/11175938/xcode-use-of-undeclared-identifier)*。我知道你是新人,但要記住,你的一些研究可以幫助你解決問題。你到目前爲止嘗試過什麼嗎?請先顯示你的努力,以便其他人可以幫助你。此外,請閱讀[常見問題](http://stackoverflow.com/help)和[如何問](http://stackoverflow.com/questions/how-to-ask) – kgdesouz

回答

0

您需要提供數據類型和標識符:

long RandomPosition = arc4random() %25; 

(也可能是intunsigned或別的東西)。

此外,傳統上,您使用的類和實例和變量小寫單詞Captialized的話,那麼它可能應該是:

long randomPosition = arc4random() %25; 

然而,你的標識符是合法的。