Skip to content

Instantly share code, notes, and snippets.

@daoseng33
Created August 13, 2018 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daoseng33/1d1232882b11db20cffef1ffed091ab2 to your computer and use it in GitHub Desktop.
Save daoseng33/1d1232882b11db20cffef1ffed091ab2 to your computer and use it in GitHub Desktop.
@IBAction func textFieldDidChange(_ sender: UITextField) {
if let text = sender.text {
let uppercase = text.uppercased()
sender.text = uppercase
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment