I have a list of data that I\'m pulling from a web service. I refresh the data and I want to insert the data in the table view above the current data, but I want to keep my
Just call setContentOffset before endUpdates, that works for me.
setContentOffset
endUpdates
[tableView setContentOffset:CGPointMake(0, iContentOffset)]; [tableView endUpdates];