views:

119

answers:

1

Hi, I want change the 'return' key of iphone virtual key to a another name such as 'Go'. Help me please.

+5  A: 

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;
stigi
Thats cool! But, Is their any way to add completely customized name such as "Open"?
shakthi
stigi
Its ok. I am not going to break anything.
shakthi