0

How can I open keypad native from iOS in my app. I try with UITextField

[textField setKeyboardType: UIKeyboardTypePhonePad];

But no is good solution.

modusCell
  • 13,151
  • 9
  • 53
  • 80

1 Answers1

0

If you meant how to show the keyboard for the textField without the user touching it, try

[textField becomeFirstResponder]
qRis
  • 86
  • 6
  • I need open phone Keypad dial in my app, how? if implement in textfield no show native phone keypad from my iphone. Not show keyboard from textfield – Bernardo Restrepo Aug 14 '14 at 16:18
  • [http://stackoverflow.com/questions/11896173/how-can-i-open-phones-keypad-from-my-app](http://stackoverflow.com/questions/11896173/how-can-i-open-phones-keypad-from-my-app) – qRis Aug 14 '14 at 16:23