I have collection view with 6 cells - each cell makes 3-4 different API calls . I want to show collective progress bar below navigation bar . How to keep track of api calls to generate progress from them ? PS: API calls don't have any download or upload task .
Asked
Active
Viewed 175 times
0
-
You should be able simply update a counter each time an api call finishes – Paulw11 Oct 15 '20 at 06:53
-
create a queue for these calls then you can simply check the count of the elements of queue and show progress bar – emrcftci Oct 15 '20 at 08:29
-
any example links ? – Akash Shindhe Oct 15 '20 at 10:01