How to know when UITableView-reloadData finished?
iPhoneOS 3.1 & 3.2
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
iPhoneOS 3.1 & 3.2
- (void) selectRowAtIndexPath:(NSIndexPath *) path {
// Replace animated and scrollPos with the values you want to use
[tableView selectRowAtIndexPath:path animated:animated scrollPosition:scrollPos];
}
- (void) foo {
[tableView reloadData];
[self performSelector:@selector(selectRowAtIndexPath:) withObject:indexPath afterDelay:0.0];
}
How to know when UITableView-reloadData finished?