I want to have a keyboard which has a Next,Previous and Done button on top of it.

I have seen that in many apps.

Especially where there are forms to be filled.

enter image description here

I want to achieve something similar to above keyboard

How can I get that?

link|improve this question

feedback

3 Answers

up vote 14 down vote accepted

You'll find the answer on this other post. I checked the iOS Library and the inputAccessoryView of a UITextField is exactly what you're looking for !

Hope this helps !

link|improve this answer
sweet, thanks for the pointer. – Nick Weaver Apr 8 '11 at 7:32
feedback

This is a custom control which is placed directly above the keyboard. I think a UIToolbar can be used for that.

Previous and next passes around the firstResponder of the textFields and Done will do the resign as well as hide the toolbar.

To match the keyboard animation have a look at this code I found or at SO: "What is the iPhone's default keyboard animation rate?"

link|improve this answer
Yeah I tried something similar but when I click in TextBox then Toolbar appears immediately and keyboard appears from below so it looks as seperate.it is not in sync while getting displayed. It does look seperate. I want that both keyboard and toolbar should come together from bottom of the screen. What should I do? – Parth Bhatt Apr 8 '11 at 7:26
Use an animation block matching the keyboad. – Nick Weaver Apr 8 '11 at 7:29
Thanks for the input. I am newbie into animation. How to use the animation block matching with keyboard? – Parth Bhatt Apr 8 '11 at 7:31
Have a look at Apple's Animation Programming Guide for Cocoa – Nick Weaver Apr 8 '11 at 9:06
feedback

I just created a class called BSKeyboardControls which makes it very easy to add the controls to a keyboard. The class, instructions and example code can be found here at GitHub.

The controls works for text fields and text views and are optimized for both iPhone and iPad.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.