I have a UITableView that is using a custom table cell and each cell has a UIWebView.
Because UIWebView took along time to load, i want to avoid reloading them at al
I prefer to have a smooth transition:
CGPoint offset = self.tableView.contentOffset;
[UIView transitionWithView:self.tableView duration:0.5 options:UIViewAnimationOptionTransitionCrossDissolve animations:^{
[self.tableView reloadData];
self.tableView.contentOffset = offset;
} completion:nil];
give it a try.