Created
September 24, 2017 15:19
-
-
Save robertherdzik/c645b496f73354fdd0724ffbbddd98df 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
let animation = CABasicAnimation(keyPath: "opacity") | |
animation.beginTime = CACurrentMediaTime() + 3 | |
animation.fillMode = kCAFillModeForwards | |
animation.isRemovedOnCompletion = false | |
animation.duration = 3 | |
animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionLinear) | |
animation.fromValue = 1 | |
animation.toValue = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment