Reputation: 1087
I want to get the Rank of my local players score in all time best section in game center leaderboard. I only found the code to retrieve local player's uploaded score . How to get its rank in leaderboard.
Thanks
Upvotes: 4
Views: 1574
Reputation: 1393
Try to use
GKScore* score = [leaderBoard localPlayerScore];
NSInteger rank = score.rank;
You should receive top scores by calling:
[leaderBoard loadScoresWithCompletionHandler:^(NSArray* topScores, NSError* error){
if (!error) {
// topScores
}
}];
Upvotes: 2