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
The onscreen keyboard fails to appear when a UITextField gains focus with the TextFieldsViewController in the WOCCatalog app (or any app).
I'm running Windows 10 Pro on a Dell Venue 11 Pro (5130).
I've selected the Devices->Typing setting "Automatically show the touch keyboard in windowed apps when there's no keyboard attached to your device" (and this works for standard applications like Firefox). Maybe the universal WOCCatalog app doesn't count as a "windowed app"?
In either case, it would be nice if the onscreen windows keyboard responded to the UITextField gaining focus (via either touch or call to becomeFirstResponder). It would also be nice if it dismissed in response to e.g. a call to [self.textField resignFirstResponder] (possibly added to the textFieldShouldReturn:UITextFieldDelegate method to support dismissing the on screen keyboard upon press of the return key).
The onscreen keyboard fails to appear when a
UITextField
gains focus with the TextFieldsViewController in the WOCCatalog app (or any app).I'm running Windows 10 Pro on a Dell Venue 11 Pro (5130).
I've selected the Devices->Typing setting "Automatically show the touch keyboard in windowed apps when there's no keyboard attached to your device" (and this works for standard applications like Firefox). Maybe the universal WOCCatalog app doesn't count as a "windowed app"?
In either case, it would be nice if the onscreen windows keyboard responded to the
UITextField
gaining focus (via either touch or call tobecomeFirstResponder
). It would also be nice if it dismissed in response to e.g. a call to[self.textField resignFirstResponder]
(possibly added to thetextFieldShouldReturn:
UITextFieldDelegate
method to support dismissing the on screen keyboard upon press of the return key).I can confirm that adding e.g.
[textField performSelector:@selector(becomeFirstResponder) withObject:nil afterDelay:10];
to the TextFieldsViewController in WOCCatalog does result in the field gaining focus - but the onscreen keyboard does not automatically appear.
The text was updated successfully, but these errors were encountered: