I've call an web API to get the result. After getting response I want to remove "visualIndicatorView" (UIView) with indication using animation function. Indication and View come to hidden state but not smoothly.
Here is my code:
dispatch_async(dispatch_get_main_queue()) {
UIView.animateWithDuration(2.0, animations: { () -> Void in
self.activityIndicator.hidden = true
self.visualIndicatorView.hidden = true
self.activityIndicator.stopAnimating()
}) { (completed:Bool) -> Void in
}
hidden is not an animatable property. Try setting alpha to 0:
self.visualIndicatorView.alpha = 0.0
self.activityIndicator.alpha = 0.0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With