How I can change the "return" button name to search in an iphone app using xcode
Thanks
How I can change the "return" button name to search in an iphone app using xcode
Thanks
You can do this by changing the returnKeyType property of any control conforming to the UITextInputTraits protocol.
For example:
myTextField.returnKeyType = UIReturnKeySearch;