Tornado
Tornado

Reputation: 1087

Rank of Local authenticated player in All Time best in game center leaderboard

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

Answers (1)

Greyisf
Greyisf

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

Related Questions