Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableView stops scrolling when adding new rows

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.

like image 461
6rod9 Avatar asked Jul 28 '15 15:07

6rod9


1 Answers

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.

like image 150
6rod9 Avatar answered Sep 22 '22 08:09

6rod9