Is there a way to use the keyboard with \"Go\" key instead of the \"Return\" key like when you are accessing login fields in Safari? I\'m guessing this should be something t
You can use this simple way: [textField setReturnKeyType:UIReturnKeyGo];
instead of "Add" button.
Other, you create a programmatically keyboard with buttons which you want.
For a UITextField
or editable UITextView
:
[myTextField setReturnKeyType:UIReturnKeyGo];
You can also configure this in Interface Builder, under Text Input Traits for your text field/view:
myTextField.returnKeyType = UIReturnKeyType.Go
Other options for return key name can be found at: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITextInputTraits_Protocol/#//apple_ref/c/tdef/UIReturnKeyType
In Xamarin.iOS or Monotouch is:
myTextField.ReturnKeyType = UIReturnKeyType.Go;
Possible values are:
Default
Go
Google
Join
Next
Route
Search
Send
Yahoo
Done
EmergencyCall
Continue