I have taken 4 Text Fields on one view and for 3'rd text field(to accept phone number) i set Phone Pad as its keyboard property. But after entering phone number there is no Done key on keypad to go ahead for 4'th Text Filed entry.
Is there any way to finish number entry using Phone pad? or i need to use another keyboard type such as "Numbers & Punctuation".
I have taken 4 Text Fields on one view and for 3'rd text field(to accept phone number) i set Phone Pad as its keyboard property. But after entering phone number there is no Done key on keypad to go ahead for 4'th Text Filed entry.
Is there any way to finish number entry using Phone pad? or i need to use another keyboard type such as "Numbers & Punctuation".
Any help will be appreciated.
I guess you either use keyboard type such as "Numbers & Punctuation". or customize Phone keyboard
__________________ lazy blogs
The Lord's holy name be praised.
to make a keypad go away you can say... well for example your UITextField is called myNumberPad...
if you say
[myNumberPad resignFirstResponder];
it will make the keyboard go away.
on a side note...
you could make a button that you press and the keypad goes away
and just make the button only visible (alpha = 100) when the keyboard is open.
and make it invisible (alpha = 0.02) when its closed...
the only reason you dont set the alpha = 0.00 is because for some reason the app ignores anything below 0.01 alpha