How to add a custom keyboard

I made a simple application.

My application contains 10 text fields.

what i need, i need to hide the keyboard by default. i put hand keys like this

How can I do this, it works like a keyboard for my application.

can any pls post any code or link.

Thanks in advance.

+2
source share
3 answers

I wrote KeyPad , which is easy to configure through its delegate.

+3
source

Just add a view with 10 buttons and assign an action to each of them.

In didBeginEditing method use keyboard using

[textField resignFirstResponder]
[yourKeyboard show];

,

+1

, , , , , , . ( )

, iOS3.2 inputView . iOS ( UIKeyboard), .

, , , , UIKeyInput UITextInput.

,

+1

All Articles