iosobjective-cipaduikeyboardtype

Customize uikeyboardtype with @gmail.com and numbers


I want to create a UIKeyboard type that will look like the following.

enter image description here

This app is only for iPad and none of the default keyboard type seem to match.

Any suggestions for adding buttons to the keyboard type?


Solution

  • I may be wrong, but what that looks like is the standard keyboard with a custom toolbar on top. It was most likely done using the inputAccessoryView property for the textfield:

    [textField setInputAccessoryView:inputAccView];
    

    Here is where I took the example from.