I want change the 'return' key of iphone virtual key to a another name such as 'Go'. Help me please.
There's a property
@property(nonatomic) UIReturnKeyType returnKeyType;  
defined in the UITextInputTraits protocol.
So what you probably want to do is:
UITextField *myTextField; // your textfield..
myTextField.returnKeyType = UIReturnKeyGo;
For other possible values see UIReturnKeyType:
typedef enum {
    UIReturnKeyDefault,
    UIReturnKeyGo,
    UIReturnKeyGoogle,
    UIReturnKeyJoin,
    UIReturnKeyNext,
    UIReturnKeyRoute,
    UIReturnKeySearch,
    UIReturnKeySend,
    UIReturnKeyYahoo,
    UIReturnKeyDone,
    UIReturnKeyEmergencyCall,
} UIReturnKeyType;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With