Skip to content

Instantly share code, notes, and snippets.

@mrmemmo
Created November 30, 2020 20:08
Show Gist options
  • Save mrmemmo/7b2f004518427b2a85dd484aec66102b to your computer and use it in GitHub Desktop.
Save mrmemmo/7b2f004518427b2a85dd484aec66102b to your computer and use it in GitHub Desktop.
#if canImport(UIKit)
extension View {
func hideKeyboard() {
UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment