Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Need help in iOS GameCentre development

I have developed an iOS game that uses game centre. When connecting it to iTunes connect, in the leaderboard section it says no leaderboard, this might be because I made a mistake in the code. Can someone help me please.

1 Answer

You have to manually add the Leaderboard in iTunes Connect to be able to send scores via the application. After you create the leaderboard in iTunes Connect, you use the Leaderboard ID within the application to send scores.

- (void) reportScore: (int64_t) score1 forLeaderboardID: (NSString*) identifier
{
    GKScore *scoreReporter = [[GKScore alloc] initWithLeaderboardIdentifier: identifier];
    scoreReporter.value = score1;
    scoreReporter.context = 0;

    NSArray *scores = @[scoreReporter];
    [GKScore reportScores:scores withCompletionHandler:^(NSError *error) {

    }];
}