Questions tagged [cakeyframeanimation]

Describes an animation that provides keyframe interpolation of a layer property in Apple's Core Animation framework.

CAKeyframeAnimation is a Core Animation animation type that provides keyframe interpolation of a layer property. Instances should be created with the initializer animationWithKeyPath:.

For more information, see the Apple Documentation for CAKeyframeAnimation.

229 questions
0
votes
3 answers

Moving several UIImages over a UIBezierPath evenly spread

I'm trying to create a View that has a UIBezierPath on it. This works now. I would like to place UIImages (random number of images) on that UIBezierPath and animate them on request all to the next step or the previous step. All images at once and…
stackr
  • 2,714
  • 24
  • 44
-1
votes
1 answer

When CAAnimationGroup's execution is completed, it goes back to initial animation sequence with a jerking effect

Here, I am creating a vanishing circular layer animation. My code is following: import UIKit class VanishingLoader: UIView { private let loaderLayer = CAShapeLayer() private var layerPaths = [UIBezierPath]() private let…
Natasha
  • 5,685
  • 1
  • 27
  • 47
-1
votes
1 answer

move animation using cakeyframeanimation

i attempt to create CAKeyframeAnimation in order to move image to achieve half of the curved path can any one help to create it correctly
Abdel Ali
  • 1
  • 1
-2
votes
1 answer

How to load an array with hundreds of UIImage instances without crashing the app because of the memory surge?

I have an animation which consists of 250 frames. Each frame is 1080x1920 resolution and in PNG format. I need to take all these frames, animate them with CAKeyframeAnimation and render them on a video using AVFoundation tools. The issue arises when…
xinatanil
  • 969
  • 1
  • 12
  • 22
1 2 3
15
16