Skip to content

Instantly share code, notes, and snippets.

@Alexander-Ignition
Created November 2, 2018 11:30
Show Gist options
  • Save Alexander-Ignition/298c60a9909259abb0f1740b410a4ffd to your computer and use it in GitHub Desktop.
Save Alexander-Ignition/298c60a9909259abb0f1740b410a4ffd to your computer and use it in GitHub Desktop.
UITextField keyboard language
class TextField: UITextField {
override var textInputMode: UITextInputMode? {
return UITextInputMode.activeInputModes.first(where: {
$0.primaryLanguage?.contains("ru") == true
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment