How can I open the game center leaderboard in tvOS? I used this code for my iPhone games, "leaderboardIdentifier" is not available in tvOS.
I planned to use the same leaderboard on AppleTV (it will be the same game).
Thanks so much for your help, Stefan
@IBAction func handleGameCenter(sender: UIButton) { let gcViewController = GKGameCenterViewController() gcViewController.viewState = GKGameCenterViewControllerState.Leaderboards gcViewController.leaderboardIdentifier = gamePrefix + "Leaderboard" gcViewController.gameCenterDelegate = self // Show leaderboard self.presentViewController(gcViewController, animated: true, completion: nil) } func gameCenterViewControllerDidFinish(gameCenterViewController: GKGameCenterViewController) { gameCenterViewController.dismissViewControllerAnimated(true, completion: nil) }
source share