Given a UITableViewController with a UISearchBar, how does one change the \'No Results\' text that appears in the table view (after any characters are enter
From Apple Support Forum: There isn't currently a supported way to change the text (good chance to file a bug!), but you can prevent it from showing up by returning a single row with a blank cell from your data source when you're still waiting for the user to press the search button. As long as there's a cell we won't show the no results text.