How to animate a UISearchBar sliding in and out of the view without a UISearchDisplayController?
I have a view that has a button which toggles a UISearchBar using searchBar.hidden = !searchBar.hidden; The searchbar goes out and queries a web service to get results and then displays them to the user without ever using a UITableView or a local datasource or anything. As such I don't really want to use a UISearchDisplayController to...