how to restrict UItext field as a numric keyboard in ios? -
this question has answer here:
how restrict uitext field numric in ios ?
it allow me type of keyboard want restrict phone number.
you can set keyboard type textfield directly interface builder shown in screenshot. can use uikeyboardtypephonepad or uikeyboardtypenumberpad per need.
also can use code :
[textfield setkeyboardtype:uikeyboardtypephonepad];
Comments
Post a Comment