我正试图在Game Center的游戏中制作排行榜。我发布了这样的高分:
GKScore *myScoreValue = [[[GKScore alloc] initWithCategory:@"grp.high_scores"] autorelease];
myScoreValue.value = self.game.scoreMeter.score;
NSLog(@"Attemping to submit score: %@", myScoreValue);
[myScoreValue reportScoreWithCompletionHandler:^(NSError *error){
if(error != nil){
NSLog(@"Score Submission Failed");
} else {
NSLog(@"Score Submitted");
id appDelegate = [[UIApplication sharedApplication] delegate];
[appDelegate displayLeaderBoard:nil];
}
}];
我看到“提交的分数”正如预期的那样,它会显示游戏中心的排行榜视图,但它只是显示“无分数”
我知道其他人已经说you need at least two accounts,但我已经尝试了三个。
对于每个帐户,游戏都会在游戏中心应用中显示出来,当我查询前十个分数时:
- (void) retrieveTopTenScores
{
GKLeaderboard *leaderboardRequest = [[GKLeaderboard alloc] init];
if (leaderboardRequest != nil)
{
leaderboardRequest.playerScope = GKLeaderboardPlayerScopeGlobal;
leaderboardRequest.timeScope = GKLeaderboardTimeScopeAllTime;
leaderboardRequest.range = NSMakeRange(1,10);
[leaderboardRequest loadScoresWithCompletionHandler: ^(NSArray *scores, NSError *error) {
if (error != nil)
{
NSLog(@"Error grabbing top ten: %@", error);
}
if (scores != nil)
{
NSLog(@"Top ten scores: %@", scores);
}
}];
}
}
每个用户只能看到自己的分数。
那么为什么排行榜是空的,为什么每个用户只看到自己的分数?
答案 0 :(得分:0)
Sandbox有时会很乱,但让我问你这个问题。你的self.game.scoreMeter.score
是一个int吗?
如果是这样,请尝试这样做:
myScoreValue.value = [[NSNumber numberWithInt:self.game.scoreMeter.score] longLongValue];
用于设置GKScore对象的值。如果它改变了什么,请告诉我。
答案 1 :(得分:-1)
嗯,事实证明你需要使用开发人员沙箱帐户登录游戏中心才能正常工作