I have a UITableView with Cells that have UIImages as main content. The Table View is paginated, so when I'm near the end of the UITableView I make a new Request to the API and insert the new cells (infinit scrolling).
The problem is that when the data from the API arrives, and I add them to the table view, the scrolling stops completly.
I've tried with
[tableview reloadData]
and
[tableview beginUpdates]
[tableview insertRows...]
[tableview endUpdates]
But the Scrolling animation stops completly in both cases.
I just found the problem: After the new data arrived I had a UIRefreshControl calling [self.refreshControl endRefreshing]
. And for some reason that method stopped all scrolling animation in the table view.
By adding
if ([self.refreshControl isRefreshing]) {
[self.refreshControl endRefreshing];
}
the problem was solved.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With