Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在游戏中心排行榜的所有时间最好的部分中获得我的本地玩家得分的排名。我只找到了检索本地玩家上传分数的代码。如何在排行榜中获得排名。
谢谢
尝试使用
GKScore* score = [leaderBoard localPlayerScore]; NSInteger rank = score.rank;
您应该通过以下方式获得最高分:
[leaderBoard loadScoresWithCompletionHandler:^(NSArray* topScores, NSError* error){ if (!error) { // topScores } }];