We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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)
The text was updated successfully, but these errors were encountered:
Did you call this in viewDidLoad or viewDidAppear? In my case, animation is not working in viewDidLoad, but it is working in viewDidAppear.
Sorry, something went wrong.
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.
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.
spinAnimation.removedOnCompletion = NO;
- (void)addAnimation
I really don't want make pull request for this simple line. Would be great if author made this simple fix :-)
No branches or pull requests
Hi, I have and issue when I show progress view overlay with IndeterminateSmall type, it is not spinning/animating.
heres the code
The text was updated successfully, but these errors were encountered: