I have a problem with the GameKit, I already have two leaderboards integrated into my app. When I open the leaderboard always appears just one leaderboard, but I have 2 I want to open the second leaderboard, how can I do that?
Here is my code to open the main leaderboard:
- (void) openLeaderboard {
GKLeaderboardViewController *leaderboardController =[[GKLeaderboardViewController alloc]init];
if (leaderboardController != nil)
{
leaderboardController.leaderboardDelegate = self;
[self presentViewController: leaderboardController animated: YES completion:nil];
}
}
Thanks in advance