Skip to content

Instantly share code, notes, and snippets.

@SarahAlsharif
Created August 7, 2020 01:09
Show Gist options
  • Save SarahAlsharif/bab4b88e37b280c7d2ac7580af13dbe0 to your computer and use it in GitHub Desktop.
Save SarahAlsharif/bab4b88e37b280c7d2ac7580af13dbe0 to your computer and use it in GitHub Desktop.
extension UIApplication {
func endEditing(_ force: Bool) {
self.windows
.filter{$0.isKeyWindow}
.first?
.endEditing(force)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment