kaiinui / KIProgressView

[iOS] Medium, YouTube-like Progress View!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hiding the progress view

aseemsandhu opened this issue · comments

Great library. I am using this progress view with my networking calls. Problem is that if I make many requests simultaneously, the progress view sometimes does not hide when it should. What fixed it for me was changing the following method in KIProgressViewManager in which I first hide the progress view:

 - (void)hideProgressView {
        self.progressView.hidden = YES;
        [self.progressView removeFromSuperview];
 }

@sublimepremise could this be because you're not calling hideProgressView on the main thread?