How can I force the UISearchBar to automatically start a new search (like pressing the Search button)? Is there an easy way to achieve this?
Just have the search input field become the first responder:
[self.searchInputField becomeFirstResponder];