I wish to change the title of the cancel button in iOS. I have been using this previously:
- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayCon
If you just want to change the "Cancel" text to the same in your locale, the proper way I think is using localization. Here is how:
en.lproj directory(not sure this is necessary) edit your Info.plist and add these lines:
Localization native development region: your region (for example: en)Localizations: for example EnglishNote: it does not work in Simulator, test it on the device!
(Source: http://www.ibabbleon.com/iphone_app_localization.html)