nameless
nameless

Reputation: 809

UIKeyboardTypeNumberPad with "ABC" Button in iphone sdk?

When i set UIKeyboardTypeNamePhonePad, it gives first Character Keyboard(ABC..).After pressing 123, it gives number pad in which THe Button ABC is available to go to character keyboard.but when i set UIKeyboardTypeNumberPad,it is not giving "ABC" Button.How can I bring first Number Pad with ABC Option?

Upvotes: 0

Views: 438

Answers (1)

Maulik
Maulik

Reputation: 19418

You can add your custom button in UIKeyboardTypeNumberPad type keyboard as described here.

Now, you just need to change keyboard's type in button's click method.

Upvotes: 1

Related Questions