I'm using the below code to scroll to the bottom of my table view when my "send" button is tapped. That said, the animation seems "choppy" even though I've set animated to YES. E.g. When the button is tapped, my entire table view content clears (goes white), and then reappears at the bottom of my tableview (vs. the smooth scrolling animation I'm looking for?)
ViewController.m
- (IBAction)sendReply:(id)sender {
[self.tableView setContentOffset:CGPointMake(0, CGFLOAT_MAX) animated:YES];
}