You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to write a function that checks if the device is an X model, so that it removes the Globe key. I'm using DeviceGuru, but having problems. If anyone has a quick solution, let me know please!
The text was updated successfully, but these errors were encountered:
We had created a variable in KeyboardViewController.swift that used the needsInputModeSwitchKey instance property Apple had introduced in iOS 11, but our implementation no longer seems to work with X and XS phones on iOS 12. Please let me know if you find a better solution...
var globeKeyShouldDisplay = true
KeyboardViewController.shared = self
if #available(iOSApplicationExtension 11.0, *) {
self.globeKeyShouldDisplay = self.needsInputModeSwitchKey
}
self.keyboard = defaultKeyboard()
I'm trying to write a function that checks if the device is an X model, so that it removes the Globe key. I'm using DeviceGuru, but having problems. If anyone has a quick solution, let me know please!
The text was updated successfully, but these errors were encountered: