performSegue 不工作并导致崩溃
performSegue not working and result crash
我在尝试调用 StoryBoard 中的 performSegue 时遇到奇怪的崩溃。我已经配置了视图控制器 segueID,它是基于 UINavigation 层次结构的 viewController.I 我收到以下错误。
错误 - “与标识符 'SEGUE_ID'”没有任何联系”
尝试检查
if segue.identifier == “SegueID”
在准备函数的开头
您可以这样查看故事板:
print(self.storyboard)
self.performSegue(withIdentifier: "SEGUE_ID", sender: self)
不能为零
不确定是我的错误还是在 segue 连接中发生了一些变化。早些时候我曾经将连接从 destination 拖到 source view controller 但我觉得它现在不起作用。当我改变连接方向时它开始工作,即 source to destination ViewController.
检查连接方向。
源的目的地。
应该是源到目的地。
我在尝试调用 StoryBoard 中的 performSegue 时遇到奇怪的崩溃。我已经配置了视图控制器 segueID,它是基于 UINavigation 层次结构的 viewController.I 我收到以下错误。
错误 - “与标识符 'SEGUE_ID'”没有任何联系”
尝试检查
if segue.identifier == “SegueID”
在准备函数的开头
您可以这样查看故事板:
print(self.storyboard)
self.performSegue(withIdentifier: "SEGUE_ID", sender: self)
不能为零
不确定是我的错误还是在 segue 连接中发生了一些变化。早些时候我曾经将连接从 destination 拖到 source view controller 但我觉得它现在不起作用。当我改变连接方向时它开始工作,即 source to destination ViewController.
检查连接方向。
源的目的地。
应该是源到目的地。