Created
July 28, 2019 11:42
-
-
Save rickwierenga/ceb2a05f1991b63d8a0cce48abd7eb7a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment