How can I change strings of \"Cancel\" button, \"No Results\" label in UISearchBar of UISearchDisplayController?
A simpler solution for changing the Cancel button text:
[self.searchDisplayController.searchBar setValue:@"custom text" forKey:@"cancelButtonText"];
Tested in iOS 10