3

我正在尝试将 Game Center 排行榜和成就添加到我的游戏中,但我在 Swift 中找不到任何 SpriteKit 教程。所有教程都有

    self.presentViewController(viewController, animated: true, completion: nil)

但在 Sprite Kit 中不起作用

4

1 回答 1

4

如果您已经在其中,则可以这样称呼它UIViewController。但是,如果你想UIViewController从你的那里显示一个,SKScene你应该rootViewController从那里访问并展示控制器:

self.view?.window?.rootViewController?.presentViewController(yourViewController, animated: true, completion: nil)
于 2015-03-05T23:06:42.740 回答