Created
January 27, 2019 05:18
-
-
Save Aymenworks/c7b199c9c7182b830e63bfdc74c8bc1d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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