In Apple\'s Messages app, when you click a correspondent\'s name and switch to the table view of the conversation (with balloons for each message), the table appears scrolle
Following DyingCactus's reply above, I added this method to my controller:
-(void)viewWillAppear:(BOOL)animated {
[self.tableView reloadData];
NSIndexPath* ip = [NSIndexPath indexPathForRow:[self.tableView numberOfRowsInSection:0] - 1 inSection:0];
[self.tableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionTop animated:NO];
}
And now it works, exactly what I wanted. Thanks!