-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
addInfiniteScrollingWithActionHandler not getting called #243
Comments
+1, Same issue too, I can load more just one time. The other time, the indicator stuck animating, and no action is being called |
+1 |
1 similar comment
+1 |
+1, using version 0.4.1 with CocoaPods |
Be sure you called [tableView addInfiniteScrollingWithActionHandler:^{
// append data to data source, insert new cells at the end of table view
// call [tableView.infiniteScrollingView stopAnimating] when done
}]; |
+1, it's not called, so the indicator would keep spinning. |
I'm facing the same issue, the indicator keeps loading and action handle not fired second time. |
You need to call [self.collectionView.infiniteScrollingView stopAnimating]; The problem is the state of InfitieScorllView is not being updated to stopped. It will not trigger the action handler unless the state is set to stopped. Calling stopAnimating after your action handler is completed resets the state. |
Calling [self.tableView.infiniteScrollingView stopAnimating]; Fixed the issue for me. |
addInfiniteScrollingWithActionHandler is not getting called second time and network indicator keeps on animating. What could be the problem?
The text was updated successfully, but these errors were encountered: