In iOS 7, when the user clears the text formerly in a UISearchBar, the blue "Search" button becomes disabled. Is there any way to change this, so it's always enabled? I want the user to be able to hit "Search" even when there is no text, to show all items in the list, instead of filtering it by the search term. (Currently, when the user attempts to clear a former search term, the blue Search button becomes disabled.)
I could trigger a new search in my delegate's searchBarTextDidEndEditing callback, so that the Dismiss keyboard button causes a refreshed list with all results... but ideally I'd like the blue Search button to be available even when there is no text in the field. Is this possible?