Game Center leaderboard shows one result
问题 I've sent scores to the leaderboard with different test accounts but when I try to see the leaderboard I can only see the score from the account that I'm logged in. I used this code to send the scores : - (void)reportScore:(int64_t)score forLeaderboardID:(NSString*)identifier { GKScore *scoreReporter = [[GKScore alloc] initWithLeaderboardIdentifier: @"GHS"]; scoreReporter.value = score; scoreReporter.context = 0; [GKScore reportScores:@[scoreReporter] withCompletionHandler:^(NSError *error) {