Once my UITableView has been populated with data, I want to scroll 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 I'm supposed to run this. How do you know when a table has finished loading data?