0
我想檢查數組以查看是否所有字段都有值,並且如果所有字段都有值,那麼我希望它做某件事。我的代碼確實有用,但它確實很麻煩。我想知道是否有更簡單的方法來做到這一點。如何檢查數組中的所有字段包含數據
@IBAction func testBtn(sender: AnyObject) {
self.textData = arrayCellsTextFields.valueForKey("text") as! [String]
for item in textData {
if item.isEmpty {
print("Missing")
switchKey = true
// alertviewer will go here
break
} else {
switchKey = false
}
}
if switchKey == false {
//navigation here
print("done")
}
}
顯示的TextData的日誌。 – Shoaib