You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks a lot for this lib. The call [[GameCenterManager sharedManager] highScoreForLeaderboard:@"LeaderboardID"] is very useful.
I am having a hard time trying to do the same thing but to retrieve the player rank (position in the leaderboard). Would it be easy for you to provide the highRankForLeaderboard method as well?
Thanks very much, have a nice day.
The text was updated successfully, but these errors were encountered:
You can get rank inside -syncGameCenter in place where array GCMLeaderboards is processed. But there is need one improvement — current version of GCM works with ONE leaderboard for the game. It's awful...
Hi @SoundBlaster, there are some major improvements coming to many aspects of GCManager (including leaderboard retrieval features). For now, you can use the GameKit block-based APIs to get leaderboards and the user's rank on each:
[GKAchievement loadScoresWithCompletionHandler:^(NSArray *scores, NSError *error) {
for (GKScore *score in scores) {
// Handle each score
}
}];
Hi
Thanks a lot for this lib. The call [[GameCenterManager sharedManager] highScoreForLeaderboard:@"LeaderboardID"] is very useful.
I am having a hard time trying to do the same thing but to retrieve the player rank (position in the leaderboard). Would it be easy for you to provide the highRankForLeaderboard method as well?
Thanks very much, have a nice day.
The text was updated successfully, but these errors were encountered: