I have a UITextField that I want to set into editing mode (keyboard on screen and cursor in text field box) programatically. I know that the user will be in editin
UITextField
You have to call [textField becomeFirstResponder];
[textField becomeFirstResponder]