How can I open keypad native from iOS in my app. I try with UITextField
[textField setKeyboardType: UIKeyboardTypePhonePad];
But no is good solution.
How can I open keypad native from iOS in my app. I try with UITextField
[textField setKeyboardType: UIKeyboardTypePhonePad];
But no is good solution.
If you meant how to show the keyboard for the textField without the user touching it, try
[textField becomeFirstResponder]