Once my UITableView is populated with data, I want to go to a specific index. I think this is how you do it:
[[self tableView] scrollToRowAtIndexPath:[NSIndexPath indexPathWithIndex:3] atScrollPosition:UITableViewScrollPositionMiddle animated:NO];
The problem is when should I run this. How do I know when a table has finished loading data?
quano source
share