I'm trying to get Game Center working and it's almost there. The only problem is that the scores posted don't make any sense. This is my post score code:
-(IBAction)subScore
{
{
GKScore *scoreReporter = [[[GKScore alloc] initWithCategory:@"katplay"] autorelease];
scoreReporter.value = gcPost;
NSLog(@"posted");
NSLog(gcPost);
[scoreReporter reportScoreWithCompletionHandler:^(NSError *error) {
if (error != nil)
{
NSLog(@"failed!!!");
NSLog(gcPost);
}
}];
}
}
So I play the game and get my score and view the console where the log says that gcPost = 2500. When I view the leaderboard my score is 100,929,392 Points. I have no idea where that number could have come from.
Am I just missing something basic?
Chris
GKScore.valueandgcPost? How are you reading the score back out from gamecenter? – sarnold Jan 26 '11 at 0:33