0

如果我是正确的:EXC_BAD_INSTRUCTION 意味着应用程序崩溃,因为某些东西不存在。(在谷歌搜索并试图让我的头绕过它之后)

但是我收到错误:

线程 1:EXC_BAD_INSTRUCTION(代码=EXC_I386_INVOP,子代码=0x0)

当我尝试加载另一个视图时。

这是应用程序崩溃的功能:

 func loginUserNeedsEmailVerification() {

    let next = self.storyboard?.instantiateViewController(withIdentifier: "LoginViewController") as! LoginViewController
    next.isUserLoggedInButNeedsEmail = true
    self.present(next, animated: true, completion: nil)
}

我正在调用这个函数。从像这样的另一个函数:

perform(#selector(loginUserNeedsEmailVerification), with: nil, afterDelay: 0)

即使文件存在,我也改变了像这样:

let next = self.storyboard?.instantiateViewController(withIdentifier: "LoginViewController") as? LoginViewController
    next?.isUserLoggedInButNeedsEmail = true
    self.present(next?, animated: true, completion: nil)

然后在最后一行抛出另一个错误:

可选类型的值未解包。

当我点击小修复它。它将代码更改为:

self.present((next?)!, animated: true, completion: nil)

但那也有这样的错误:

可选链无效

我做错了什么,我该如何解决?

4

1 回答 1

1

我刚刚在instanceViewController 期间遇到了同样的问题,但它有点不同,因为我是从另一个类调用该方法。

查看问题的常见方法是像这样设置?as !after storyboardself.storyboard!.instantiateViewController

您可能会看到这个错误
fatal error: unexpectedly found nil while unwrapping an Optional value
这意味着情节提要被发现为零。就我而言,我不知何故未能获得 UIStoryboard 的现有引用(因为我从另一个类调用)。

我找到的解决方案是首先重新声明 UIStoryboard:
let next = UIStoryboard(name: "Main", bundle:nil).instantiateViewController(withIdentifier: "LoginViewController") as? LoginViewController
我不确定为什么会这样,因为它仍然没有获得故事板的当前引用,但它对我有用。

于 2017-03-07T07:32:01.027 回答