0

Need to create the iOS keyboard similar to attached image, it is possible any how with the native solution? I have tried to assign a return key which is Done but i am getting following this is the required image

This is what i am getting

Abhishek
  • 2,255
  • 1
  • 13
  • 21

1 Answers1

0

You can create a custom input view with needed appearance.
To achieve this, you can use property inputView if UITextField:

The custom input view to display when the text field becomes the first responder.

Here you can find a guide about custom input views.
Also I've created small example with custom input view without buttons: https://github.com/K-Be/KeyboardNotifications/tree/master_CustomInput .

Andrew Romanov
  • 4,774
  • 3
  • 25
  • 40