You cannot change the default keyboard of Apple.
But you can choose the keyboard type for UITextField or UITextView by setting some properties in the UITextInputTraits protocol. Using email, set to:
[textView setKeyboardType:UIKeyboardTypeEmailAddress]
You can use inputAccessoryView to add some custom keys, see dmforminputaccessoryview
The final parameter is to create a new keyboard (subclass of UIView) and set it to inputView UITextView or UITextFied : Custom-iOS-Keyboards
source share