Reputation: 107
I want to hide special characters of iPad keyboard programatically. Is there any way to do this? Or can we display only numeric values on keyboard?
Upvotes: 0
Views: 1245
Reputation: 49730
We can not hide the native keyboard any key's or anything tricky or hack. but yes there is some type of keyboard that provide by apple:
And you can set keyboard type programmatically by following code:
[YourtextFiled setKeyboardType:UIKeyboardTypeNumberPad];
Upvotes: 3