gpt4 book ai didi

Swift - 验证 UITextField

转载 作者:搜寻专家 更新时间:2023-10-30 22:22:38 29 4
gpt4 key购买 nike

我的应用程序中有这些 socket :

@IBOutlet var name1: UITextField!

@IBOutlet var name2: UITextField!

@IBOutlet var name3: UITextField!

@IBOutlet var name4: UITextField!

@IBOutlet var newButton: UIButton!

我尝试做的是以下内容:

每当用户在这四个 UITextField 之一中键入内容或删除内容时,我想检查是否有任何 UITextField 为空

如果任何 UITextField 为空,则应禁用该按钮。

如果设置了所有 UITextField(非空),则应启用该按钮。

我的代码:

func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool {

setButton()

return true
}

func setButton() {

let inputValid = checkInput()

if inputValid {

newButton.enabled = true

} else {

newButton.enabled = false

}

}

func checkInput() -> Bool {

let name1Value = name1.text
let name2Value = name2.text
let name3Value = name3.text
let name4Value = name4.text

if !name1Value.isEmpty && !name2Value.isEmpty && !name3Value.isEmpty && !name4Value.isEmpty {

return true

}

return false

}

好的,目前它的工作效率为 50%。

当我在每个 UITextField 中键入一个字符时,该按钮仍处于禁用状态。

当我将第二个添加到任何 UITextField 时,按钮将被启用等...

谁能帮我解决这个问题?

最佳答案

或者,您可以使用它,每次按下一个键时都会调用它:

name1.addTarget(self, action: "textFieldDidChange:", forControlEvents: UIControlEvents.EditingChanged)
name2.addTarget(self, action: "textFieldDidChange:", forControlEvents: UIControlEvents.EditingChanged)
name3.addTarget(self, action: "textFieldDidChange:", forControlEvents: UIControlEvents.EditingChanged)
name4.addTarget(self, action: "textFieldDidChange:", forControlEvents: UIControlEvents.EditingChanged)


func textFieldDidChange(textField: UITextField) {
if name1.text?.isEmpty || name2.text?.isEmpty || name3.text?.isEmpty || name4.text?.isEmpty {
//Disable button
} else {
//Enable button
}
}

关于Swift - 验证 UITextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31495188/

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