Skip to content

Instantly share code, notes, and snippets.

@Aymenworks
Created January 27, 2019 05:18
Show Gist options
  • Save Aymenworks/c7b199c9c7182b830e63bfdc74c8bc1d to your computer and use it in GitHub Desktop.
Save Aymenworks/c7b199c9c7182b830e63bfdc74c8bc1d to your computer and use it in GitHub Desktop.
@objc func startLoading() {
let animation = CABasicAnimation(keyPath: "locations")
animation.duration = 1.3
animation.fromValue = [0.0, 0.0, 0.4]
animation.toValue = [0.4, 0.9, 1]
animation.repeatCount = .infinity
gradientLayer.add(animation, forKey: "AsanaLoadingView")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment