So when a user taps on a cell in my table I don’t actually push to a new view controller I just reload the data inside of that tableView.
However, I want to get an effect simular to what it would look like if I did push a new view controller.
Does anybody know how I can slide old content off old content off the screen and new content onto the screen for an entire table?
Depending on how many sections you have you can use
- (void)reloadSections:(NSIndexSet *)sections withRowAnimation:(UITableViewRowAnimation)animationSo you could do something like this: