mirror of
https://github.com/ogoguel/activegs-ios.git
synced 2024-12-26 10:32:48 +00:00
fixed crash when hardware keyboard is connected and device is rotated or input method is changed; adding text field input accessory view only if software keyboard is shown
This commit is contained in:
parent
ee04e6f4a7
commit
a89e63b36b
@ -2183,8 +2183,10 @@ int x_adb_get_keypad_y()
|
||||
|
||||
debug_printf("setInputAccessoryView:accessView");
|
||||
// IOS8
|
||||
[self.accessView removeFromSuperview];
|
||||
[self.textField setInputAccessoryView:self.accessView];
|
||||
if ( !isHardwareKeyboard() ) {
|
||||
[self.accessView removeFromSuperview];
|
||||
[self.textField setInputAccessoryView:self.accessView];
|
||||
}
|
||||
|
||||
[self.textField becomeFirstResponder];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user