Hi!
I have tried to figure out how i could integrate game center to my quiz game, and today i almost spend 6 hours on the problem. But i still haven't found out what is wrong. I have used this tutorial
iOS SDK: Game Center Achievements and Leaderboards – Part 2. my guess would be that it's about something with the
- (void) reportScore: (int64_t) score forCategory: (NSString*) category
{
GKScore *scoreReporter = [[[GKScore alloc] initWithCategory:category] autorelease];
scoreReporter.value = score;
[scoreReporter reportScoreWithCompletionHandler: ^(NSError *error)
{
[self callDelegateOnMainThread: @selector(scoreReported

withArg: NULL error: error];
}];
}
Hope someone can figure it out, sorry for my bad english and that i am a newbie :P