Last active
December 23, 2016 11:59
-
-
Save ml4den/d6cd0e534ed2e08df52363e6a25f26fd to your computer and use it in GitHub Desktop.
Swift: Close/Dismiss the Keyboard in iOS
This file contains hidden or 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
// Place outside of the ViewController class. | |
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) { | |
view.endEditing(true) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment