这是
How to check if a text field is empty or not in swift的延伸,而不是重复
给定答案,
@IBAction func Button(sender: AnyObject) { if textField1.text != "" { // textfield 1 } }
对我来说不行,即即使在文本字段中没有输入任何内容的情况下也会触发if循环。 (我已经修改了原来的,因为我正在寻找触发代码,只有当该字段包含文本)。
第二个答案
@IBAction func Button(sender: AnyObject) { if !textField1.text.isEmpty{ } }
更接近,但它接受像“”不是空的字符串。我可以自己建立一些东西,但是有没有一个函数来检查一个字符串是否包含除空白之外的东西?
您应该从空格字符中修剪字符串,并检查它是否为空:
原文链接:https://www.f2er.com/swift/320320.htmlif !textField1.text.trimmingCharacters(in: .whitespaces).isEmpty { // string contains non-whitespace characters }
您也可以使用CharacterSet.whitespacesAndNewlines来删除换行符。