gpt4 book ai didi

ios - 检查 Swift 2 中的空字符串

转载 作者:行者123 更新时间:2023-11-30 12:36:31 25 4
gpt4 key购买 nike

我正在尝试在 Swift 2 中创建必填字段。每次运行此代码时,我都不会收到任何错误,但我从未收到文本字段为空的错误消息。始终执行segue。知道我做错了什么吗?

谢谢!

@IBOutlet weak var userName: UITextField!
@IBAction func userConfermation(sender: AnyObject) {
if userName.text!.isEmpty {
let alertController = UIAlertController(title: "Error",
message: "Incorrect Password", preferredStyle:UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "Dismiss",
style: UIAlertActionStyle.Default,handler: nil))

self.presentViewController(alertController, animated: true, completion: nil)

} else {
performSegueWithIdentifier("final", sender: self)
}
return
}

最佳答案

您好,您可以通过检查 userName.text 字符数或 userName.text == ""来检查空字符串,只要它为空,它就会给您错误,并且 segue 将不会执行

关于ios - 检查 Swift 2 中的空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42792151/

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