Last active
August 29, 2016 02:04
-
-
Save tungpt247/eb96c218960aed1c03a9 to your computer and use it in GitHub Desktop.
Diss miss keyboard when tab on view
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
// tap anywhere on the view | |
var viewTab = UITapGestureRecognizer(target: self, action: "dismissKeyboard") | |
view.addGestureRecognizer(viewTab) | |
func dismissKeyboard() { | |
view.endEditing(true) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment