我在沙盒模式的排行榜中显示结果,但我希望每个结果都能显示出来。只显示一个结果。这是正常的吗?从最高到最低排序的排序选项似乎意味着应该显示多个结果。显示的是我的高分,如果超过分数则会更新。
只有一个结果显示我是否呈现VC:
- (void) presentLeaderboards {
GKGameCenterViewController* gameCenterController = [[GKGameCenterViewController alloc] init];
gameCenterController.viewState = GKGameCenterViewControllerStateLeaderboards;
gameCenterController.gameCenterDelegate = self;
[self presentViewController:gameCenterController];
}
或者如果我使用Game Center应用程序。
以下是我提交分数的方法:
-(void) submitScore:(int64_t)score
category:(NSString*)category {
if (!_gameCenterFeaturesEnabled) {
DLog(@"Player not authenticated");
return;
}
GKScore* gkScore =
[[GKScore alloc]
initWithLeaderboardIdentifier:category];
gkScore.value = score;
[GKScore reportScores:@[gkScore] withCompletionHandler:^(NSError *error) {
if (error) {
// handle error
}
}];
}
答案 0 :(得分:1)
"从最高到最低排序的排序选项似乎意味着应该显示多个结果"
由于您已在iTunes Connect上的排行榜设置中选择了高分。只有在高于之前的分数时才会更新玩家的分数,并且不会保存提交的其他分数。