I'm trying to build an animated transition similar to the Google Inbox or Google Maps animation:
I'm trying to switch between different sets of table view cells. I'd like the old table view cells to fade out (which I can do using tableView rowAnimations) and the new table view cells to slide in from the top or scrunch down from the bottom.
I've tried using UITableView methods deleteSections, deleteRows, insertSections, insertRows but I can't replicate the effect. I'm thinking that maybe I should use tableViewWillDisplayCell to perform custom animations but I'm not sure.
Any comments or suggestions are appreciated :)