我有一個對象ID「分數」,我需要保存到我的排行榜。Cocos2d,需要將nsuserdefault對象ID保存到遊戲中心
我的榜樣,得到了這部分
-(void) onPlayerInfoReceived:(NSArray*)players
{
CCLOG(@"onPlayerInfoReceived: %@", [players description]);
GameKitHelper* gkHelper = [GameKitHelper sharedGameKitHelper];
[gkHelper submitScore:1234 category:@"scoreboard"];
[gkHelper showLeaderboard];
}
除了我需要保存這個代替。
_score = [[NSUserDefaults standardUserDefaults] integerForKey:@"score"];
而且有必要的,因爲它是在同一個文件中沒有玩家套件輔助基準。
我認爲在開始嘗試編寫遊戲之前,您需要花點時間來學習Objective-C和一般編程的基礎知識。 – 2012-07-23 08:24:24