iOS GameKit 排行榜 - 获取本地玩家的分数 +/- 他周围的 50 名玩家

发布于 2024-11-09 09:37:51 字数 91 浏览 0 评论 0原文

我正在以编程方式从游戏中心拉取排行榜数据,并且我想将数据查询限制为本地玩家的分数以及高于和低于他的 25 个分数。这可能吗?有没有办法获取本地玩家当前在排行榜中的位置?

I'm programmatically pulling down leaderboard data from game center and I'd like to limit my data query to the local player's score and the 25 scores above and below him. Is this possible. Is there a way to get the local player's current position in the leaderboard?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稀香 2024-11-16 09:37:51

调用[GKLeaderboard loadScoresWithCompletionHandler:]后,您可以使用[[GKLeaderboard localPlayerScore]rank]来获取当前用户的排名。

因此,下次调用 loadScoresWithCompletionHandler 时,请设置该值周围的范围,例如 leaderboardRequest.range=NSMakeRange(localPlayerRank-25, 50)

另外,请确保您没有查询一个等级还不到一级!

Once you make a call to [GKLeaderboard loadScoresWithCompletionHandler:] you can use [[GKLeaderboard localPlayerScore] rank] to get the rank of the current user.

So the next time you call loadScoresWithCompletionHandler, set the range around that value like leaderboardRequest.range=NSMakeRange(localPlayerRank-25, 50)

Also make sure you're not querying for a rank less than one!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文