tags:

views:

24

answers:

1

How I can change the "return" button name to search in an iphone app using xcode

Thanks

+1  A: 

You can do this by changing the returnKeyType property of any control conforming to the UITextInputTraits protocol.

For example:

myTextField.returnKeyType = UIReturnKeySearch;
alleus