view.subviews.compactMap({ $0 as? UITextField }).forEach { textfield in if let text = textfield.text, text.isEmpty { textfield.backgroundColor = .yellow // highlight } else { textfield.backgroundColor = .white // default } }