November 2011
Beginner
238 pages
6h 19m
English
There are often times that you will want to know the local players score on a given leaderboard. Maybe you want to display their score at the top of your leaderboard, or perhaps you want to fetch a leaderboard that shows other player scores that are close to your local player's score.
Apple has provided an easy technique for determining the local players score. During any GKLeaderboard request, it contains a property for localPlayerScore. We create a new method in our GameCenterManager to handle retrieving the local player score for us. Add the following method to your GameCenterManager class.
-(void)retrieveLocalScoreForCategory:(NSString *)category
{ GKLeaderboard *leaderboardRequest = [[GKLeaderboard alloc] init]; ...