gpt4 book ai didi

ios - 无法使用按钮从一个 View Controller 导航到另一个 View Controller

转载 作者:行者123 更新时间:2023-11-28 13:11:45 25 4
gpt4 key购买 nike

它给出:

signal SIGABRT

日志中的另一个错误是:

libc++abi.dylib: terminating with uncaught exception of type NSException

@IBAction func loginok(sender: AnyObject) {
if loginTextField?.text != "monal" && passwordTextField?.text != "gosai"
{
warningLable?.text = "Invalid Credentials"

loginTextField?.text = ""
passwordTextField?.text=""
}
else
{
let View2 = self.storyboard!.instantiateViewControllerWithIdentifier("View2") as! ViewController2
self.navigationController!.pushViewController(View2, animated: true)

}
}

最佳答案

PerformSegueWithIdentifier 将不起作用,除非您在 Storyboard 中设置了转场。如果有,那么在 Francisco 声明的 else 语句中,您应该调用该函数。如果您还没有在 Storyboard 上设置 segue,那么您必须这样做才能使用此方法。

此外,按照惯例,您的 @IBAction 方法 header 应显示为 func loginok(sender: UIButton) {...}

关于ios - 无法使用按钮从一个 View Controller 导航到另一个 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31027509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com