如何以编程方式从 SKScene 到 UIViewController 执行成功的 segue

Posted

技术标签:

【中文标题】如何以编程方式从 SKScene 到 UIViewController 执行成功的 segue【英文标题】:How to perform a successful segue programmatically from SKScene to UIViewController 【发布时间】:2016-05-15 22:54:56 【问题描述】:

我尝试了几种不同的答案,但尚未找到有效的答案。

我不断得到

fatal error: unexpectedly found nil while unwrapping an Optional value

我的 GameViewController 中有一个名为 selectUpgrade 的 SKScene,我正在尝试转到一个名为 MissileUpgrade 的 UIViewController。

var vc2 = MissileUpgrade()  //trying to get to this UIViewController
var gameVC = GameViewController()  // currently in a scene in this UIViewController

我在我的场景中调用它来继续

func goToMissileUpgrade() 
    gameVC.presentViewController(vc2, animated: true, completion: nil)

这些在同一个故事板中。如果我将 MissileUpgrade 设置为初始 VC,它将正常加载,所以我知道它与此无关。我不知道为什么这不起作用。感谢您的帮助!

【问题讨论】:

如果你目前在GameViewController,你的代码不应该是self. presentViewController而不是gameVC.presentViewController吗? 我在一个名为 selectUpgrade 的 SKScene 中,所以当我这样做时,我收到错误“selectUpgrade”有所以成员“presentViewController” 好的,它在哪一行崩溃? gameVCvc2 是零吗? gameVC.presentViewController(vc2, 动画: true, 完成: nil) 【参考方案1】:

如果您使用故事板,请不要使用 presentViewController 使用 performSegueWithIdentifier

在情节提要中给你的 Segue 一个标识符,然后在代码中引用它,如下所示:

self.performSegueWithIdentifier("yourSegueIdentifierHere", sender: self)

【讨论】:

它没有给我那个选项?我在一个场景中调用它。这可能是为什么? 我试过gameVC.performSegueWithIdentifier("goToMissileUpgrade", sender: gameVC),但我得到错误Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Receiver (<Missile_Mayhem.GameViewController: 0x1490949e0>) has no segue with identifier 'goToMissileUpgrade'

以上是关于如何以编程方式从 SKScene 到 UIViewController 执行成功的 segue的主要内容,如果未能解决你的问题,请参考以下文章

如何正确调整 SKView 子视图和 SKScene 的大小

SpriteKit:以编程方式修改 SKScene 框架

以编程方式从 UIView 执行 Segue

我应该在 init 方法中还是在 didMove(toView:) 中以编程方式设置 SKScene?

如何在 iOS 中从 UIView 转移到 SKScene

如何在 Swift 中以编程方式从 UIView 中删除安全区域?