Avim
Avim

Reputation: 101

iOS Call animateWithDuration inside dispatch_async

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
}

Upvotes: 3

Views: 587

Answers (1)

Ozgur Vatansever
Ozgur Vatansever

Reputation: 52103

hidden is not an animatable property. Try setting alpha to 0:

self.visualIndicatorView.alpha = 0.0
self.activityIndicator.alpha = 0.0

Upvotes: 4

Related Questions