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 do the animation.
Is there anyway to animate this sliding without manually coding up the animation?
Thanks!