Opening Game Center in our game

If the user is authenticated, we will add a button to the MenuScene class so they can open the leaderboard and view achievements from within our game. Alternatively, players can always use the Game Center app in iOS to view their progress.

Follow these steps to create a leaderboard button in the menu scene:

  1. Open MenuScene.swift in Xcode.
  2. Add a new import statement at the top of the file so we can use the GameKit framework:
    import GameKit
  3. Update the line that declares the MenuScene class so that our class adopts the GKGameCenterControllerDelegate protocol. This allows the Game Center screen to inform our scene when the player closes the Game Center:
    class MenuScene: SKScene, GKGameCenterControllerDelegate {
  4. We need a function ...

Get Game Development with Swift now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.