----------
Quote:
Originally Posted by Forsworn
Did you use the code I posted before?
It should work fine.
Look at those lines:
Code:
[[myAlert textField] becomeFirstResponder];
[myAlert show];
|
-------------
Hi, I'm getting the same problem,
I have 3 text fields and I did this
[[alert textFieldAtIndex:0] becomeFirstResponder];
[[alert textFieldAtIndex:1] becomeFirstResponder];
[[alert textFieldAtIndex:2] becomeFirstResponder];
Also tried just this:
[[myAlert textField] becomeFirstResponder];
To really see the issue, use a numberic keyboard type:
af = [alert textFieldAtIndex:1];
af.clearButtonMode = UITextFieldViewModeWhileEditing;
af.keyboardType = UIKeyboardTypeNumberPad;
af.keyboardAppearance = UIKeyboardAppearanceAlert;
af.autocorrectionType = UITextAutocorrectionTypeNo;
Has anyone figured this out yet? Thanks so much for the help!