Swati
Swati

Reputation: 107

Can we hide special characters from iPad Keyboard programmatically?

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

Answers (1)

Nitin Gohel
Nitin Gohel

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:

enter image description here

And you can set keyboard type programmatically by following code:

 [YourtextFiled setKeyboardType:UIKeyboardTypeNumberPad];

Upvotes: 3

Related Questions