We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible solutions:
UIImageView. animationImages
CALayer
The text was updated successfully, but these errors were encountered:
under Components swift file added CAKeyFrameAnimation to make it animate:
return CALayer().build { let animation = CAKeyframeAnimation(keyPath: "contents") animation.calculationMode = kCAAnimationDiscrete animation.duration = 3.0 animation.repeatCount = .greatestFiniteMagnitude animation.autoreverses = false animation.values = imageArray.map {$0.cgImage!} animation.isRemovedOnCompletion = false animation.fillMode = kCAFillModeForwards animation.beginTime = 0.0 $0.add(animation, forKey: "contents") }
Sorry, something went wrong.
have you supported this feature?
How to use ?
No branches or pull requests
Possible solutions:
UIImageView. animationImages
propertyCALayer
The text was updated successfully, but these errors were encountered: