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 (Cocoa-dev@lists.apple.com)

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:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to