只要文本字段为空,我就有以下代码来禁用按钮:
func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
let text = (textField.text! as NSString).replacingCharacters(in: range, with: string)
if !text.isEmpty{
addButton.isEnabled = true
} else {
addButton.isEnabled = false
}
return true
}
它工作正常,但是现在我有3个文本字段,如果所有文本字段都不为空,我希望仅启用按钮。到目前为止,一旦填写了一个文本字段,就会启用该按钮。
如何调整我的代码?
答案 0 :(得分:2)
将目标添加到.editingChanged
事件的所有文本字段中,并检查是否有任何文本字段为空。如果所有文本字段均包含文本,请启用该按钮,否则禁用该按钮。
class TestViewController: UIViewController, UITextFieldDelegate {
let addButton = UIButton()
let textField1 = UITextField()
let textField2 = UITextField()
let textField3 = UITextField()
override func viewDidLoad() {
super.viewDidLoad()
textField1.addTarget(self, action: #selector(textChanged(_:)), for: .editingChanged)
textField2.addTarget(self, action: #selector(textChanged(_:)), for: .editingChanged)
textField3.addTarget(self, action: #selector(textChanged(_:)), for: .editingChanged)
}
@objc func textChanged(_ textField: UITextField) {
addButton.isEnabled = [textField1, textField2, textField3].contains { $0.text!.isEmpty }
}
}
答案 1 :(得分:0)
根据您的要求,首先必须为每个文本字段创建出口,然后可以将按钮启用为
@IBAction func textFieldValueChanged(_ sender: Any)
{
if firstTextField.text != "" && secondTextField.text != "" && thirdTextField.text != "" {
addButton.isEnabled = true
} else {
addButton.isEnabled = false
}
return true
并使用valueChanged
事件的上述操作将每个文本字段连接起来
答案 2 :(得分:0)
嗯,我认为公认的答案不是解决这个问题的绝妙方法。 我建议在您的viewDidLoad中添加以下观察者:
int *pr = calloc(50, sizeof *pr);
然后定义选择器:
NotificationCenter.default.addObserver(self, selector: #selector(validate), name: UITextField.textDidChangeNotification, object: nil)