I had the same problem trying to set focus on the password field in UIAlertView (I prefilled the username). I had to use the delegate method:
- (void)didPresentAlertView:(UIAlertView *)alertView { UITextField *textField = [alertView textFieldAtIndex:0]; [textField becomeFirstResponder]; }
If I tried this on willPresentAlertView or when I create an alertView, this did not work, only on didPresentAlertView. Hope this helps.
source share