我在沙盒模式下的排行榜中显示了结果,但我希望每个结果都会出现。只显示一个结果。这正常吗?从最高到最低排序的排序选项似乎意味着应该显示多个结果。显示的是我的高分,如果超过分数就会更新。
只有一个结果显示我是否因此提出了 VC:
- (void) presentLeaderboards {
GKGameCenterViewController* gameCenterController = [[GKGameCenterViewController alloc] init];
gameCenterController.viewState = GKGameCenterViewControllerStateLeaderboards;
gameCenterController.gameCenterDelegate = self;
[self presentViewController:gameCenterController];
}
或者如果我使用 Game Center 应用程序。
这是我提交分数的方式:
-(void) submitScoreint64_t)score
categoryNSString*)category {
if (!_gameCenterFeaturesEnabled) {
DLog(@"layer not authenticated");
return;
}
GKScore* gkScore =
[[GKScore alloc]
initWithLeaderboardIdentifier:category];
gkScore.value = score;
[GKScore reportScores[gkScore] withCompletionHandler:^(NSError *error) {
if (error) {
// handle error
}
}];
}
“从最高到最低排序的排序选项似乎意味着应该显示多个结果”
因为您在 iTunes Connect 的排行榜设置中选择了高分。仅当玩家的分数高于之前的分数时才会更新玩家的分数,并且不会保存其他提交的分数。
关于ios - Game Center 排行榜沙盒中仅显示一个结果 - 正常吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22106898/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |