Skip to content

Instantly share code, notes, and snippets.

@RustyKnight
Created August 29, 2018 22:05
Show Gist options
  • Save RustyKnight/64cd35cd77a1cc7dfe6cfd6ec87a3792 to your computer and use it in GitHub Desktop.
Save RustyKnight/64cd35cd77a1cc7dfe6cfd6ec87a3792 to your computer and use it in GitHub Desktop.
Extension to hide the keyboard (resign first responder) globally
import Foundation
import UIKit
extension UIViewController {
@objc func hideKeyboard() {
UIApplication.shared.sendAction(#selector(UIApplication.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment