gpt4 book ai didi

swift - 虽然我有正确的信息,但有一个线程 1 : Signal brt

转载 作者:行者123 更新时间:2023-11-30 12:19:54 26 4
gpt4 key购买 nike

我已经为我的应用程序创建了一个登录屏幕,并且选择了用户名和密码。当我写了错误的信息时,它可以工作,但正确的信息不起作用,请帮忙。这是我的登录按钮。

 @IBAction func loginButton(_ sender: UIButton) {


if userTf.text == "bartu" && passTf.text == "1" {
let myVC = storyboard?.instantiateViewController(withIdentifier: "Tab")
navigationController?.pushViewController(myVC!, animated: true)

}

else {
errorLabel.text = "Informations are wrong!"
}

}



}

最佳答案

尝试测试您的变量,因为显然,您正在尝试启动错误的 View 。

if storyboard != nil{
let myVC = storyboard!.instantiateViewController(withIdentifier: "Tab")
if navigationController != nil{
if myVC != nil {
navigationController!.pushViewController(myVC!, animated: true)
}else{
errorLabel.text = "Unable to find myVC"
}
}else{
errorLabel.text = "Unable to find navigationController"
}
}else{
errorLabel.text = "Unable to find storyboard"
}

-> 这段代码不是最好的调试方法,但它可以帮助您获得问题的直观答案。

关于swift - 虽然我有正确的信息,但有一个线程 1 : Signal brt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44920992/

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