我想在我用SceneKit创建的游戏中显示一个胜利屏幕,但是我收到一条错误消息:
类型'GameScene'的值没有成员'present'
这是我使用的代码:
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let controller = storyboard.instantiateViewController(withIdentifier: "finishVC")
self.present(controller, animated: true, completion: nil)
如何解决此错误?