iOS GameKit 排行榜 - 获取本地玩家的分数 +/- 他周围的 50 名玩家
我正在以编程方式从游戏中心拉取排行榜数据,并且我想将数据查询限制为本地玩家的分数以及高于和低于他的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
[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 likeleaderboardRequest.range=NSMakeRange(localPlayerRank-25, 50)
Also make sure you're not querying for a rank less than one!