I want to get the Rank of my local players for all time the best section in the leaderboard of the game center. I just found the code to get the local uploaded score. How to get your rating on the leaderboard.
thank
Try using
GKScore* score = [leaderBoard localPlayerScore]; NSInteger rank = score.rank;
You should get the best points by calling:
[leaderBoard loadScoresWithCompletionHandler:^(NSArray* topScores, NSError* error){ if (!error) { // topScores } }];