More detail on the iOS keyboard display bug
More detail on the iOS keyboard display bug
- Subject: More detail on the iOS keyboard display bug
- From: Alex Zavatone <email@hidden>
- Date: Thu, 07 Apr 2016 19:48:42 -0400
I was just going through my project today and came across my comments in the code where this happens + the SO link that explains more about this issue.
It seems that this bug was first reported in 2012. Someone claims it’s fixed on iOS 9.2.1.
Hope this helps
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
// AZ 12142015 - there is a significant delay here on the iPad for invoking and displaying the keyboard.
// ONLY HAPPENS WHEN THE IPAD IS PLUGGED IN and running from Xcode.
// http://stackoverflow.com/a/27487885
dispatch_async(dispatch_get_main_queue(), ^{
[self.emailAddressField becomeFirstResponder];
});
}
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden