I was wondering if its possible to activate a UISearchDisplayController from a button in the navigation bar rather than from the standard search bar that you get when you pull out the Search Bar Controller from there object library in Xcode. Like this functionality in the calendar app:
You can get a button to fire an action like so:
[self.searchDisplayController setActive:YES animated:YES];
But you still need the search bar and it animates from where the search bar is. Ideally I'd like it coming in from the top like in the gif.
Any help much appreciated. David.