gpt4 book ai didi

ios - 在 textField 集合中查找空的 textField

转载 作者:行者123 更新时间:2023-11-28 09:53:29 27 4
gpt4 key购买 nike

所以在 swift 3 中,我只想遍历 textField outlet 集合,如果 textField.text = "",则对其进行处理。我已经完成了以下操作,但我相信应该有一个更优雅的解决方案,我不必使用数组来检查空文本字段,而是直接从文本字段集合中检查它。

    @IBOutlet var playerNamesCollection: [UITextField]!

//add names to an array
var namesArray = [String]()

for i in 0...8 {

namesArray.append(playerNamesCollection[i].text!)
}

//and then verify that array
for i in 0...8 {

if namesArray.contains("") {

print("missing a name")

} else {

print("all textFieldsFilled")
}

最佳答案

像这样在你的数组上循环:

var namesArray = [String]()

namesArray = ["Pierre", "Jean", "", "Michel"]

for name in namesArray {
if name.isEmpty {
print("Empty name")
}
else {
print("\(name)")
}
}

输出:

"Pierre"
"Jean"
"Empty name"
"Michel"

关于ios - 在 textField 集合中查找空的 textField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41722737/

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