Skip to content

Instantly share code, notes, and snippets.

@tatimagdalena
Created March 8, 2017 12:38
Show Gist options
  • Save tatimagdalena/a35aead9b3e7bf243c2adee55445d089 to your computer and use it in GitHub Desktop.
Save tatimagdalena/a35aead9b3e7bf243c2adee55445d089 to your computer and use it in GitHub Desktop.
Dismiss keyboard when touching outside
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
self.view.addGestureRecognizer(UITapGestureRecognizer(target: self.view, action: #selector(UIView.endEditing(_:))))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment