-
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
Stop activity indicator after receiving data from API #220
Comments
Hi @zsheikh-systango do u got solution? i am to want it...will u help me? |
Yes, instead of calling [self.tableView.infiniteScrollingView stopAnimating]; inside |insertRowAtBottom| method you have to call just after API response. |
Thanks for quick reply, |
I was Resolve my issue by Replace [self.tableView.infiniteScrollingView stopAnimating]; By
|
Hey, currently I found this code to stop activity indicator in demo project.
[weakSelf.tableView.infiniteScrollingView stopAnimating]; (inside "insertRowAtBottom" method)
But it calls after 2 sec. I want to stop animation once I get the response from API.
so I wrote this stopAnimating line after API response. Is there any better way to achieve this?
The text was updated successfully, but these errors were encountered: