MRProgress icon indicating copy to clipboard operation
MRProgress copied to clipboard

Indeterminate progress not animating

Open zdnk opened this issue 9 years ago • 3 comments

Hi, I have and issue when I show progress view overlay with IndeterminateSmall type, it is not spinning/animating.

heres the code

MRProgressOverlayView.showOverlayAddedTo(self.view.superview, title: "direction.planning".localized, mode: MRProgressOverlayViewMode.IndeterminateSmall, animated: true)

zdnk avatar Jan 28 '16 11:01 zdnk

Did you call this in viewDidLoad or viewDidAppear? In my case, animation is not working in viewDidLoad, but it is working in viewDidAppear.

taingmeng avatar Mar 16 '16 10:03 taingmeng

I'd like to second this issue. I'm calling it during an update method (so not viewDidLoad, but after a segue) and I'm not getting any animations.

Aghassi avatar Mar 31 '16 14:03 Aghassi

I have same issue: when switching controllers (pushing one for example) then animation stops.

Solution to this is: spinAnimation.removedOnCompletion = NO; in - (void)addAnimation method.

I really don't want make pull request for this simple line. Would be great if author made this simple fix :-)

horovodovodo4ka avatar Sep 13 '16 19:09 horovodovodo4ka