There are two view controllers. VC-a pushes VC-b which embedded a tablewview.
Assume this tableview has 50 datasources, before VC-b is pushed the datasource had prepared.
How can I scroll this datasource to the bottom i.e. the bottom of the tableview show the latest datasource.
I've already try
CGPointMake(0, self.parentConversationViewController.tableView.contentSize.height - self.parentConversationViewController.tableView.frame.size.height);
and
[self.tableView scrollToRowAtIndexPath:atScrollPosition:animated:animated];
These two method did not scroll to the bottom, but almost there. If I call above method in viewDidAppear, I will show a 'animation'. Don't want that.