Describes an animation that provides keyframe interpolation of a layer property in Apple's Core Animation framework.
For example I have this CAKeyFrameAnimation: CALayer* theLayer = myView.layer; CAKeyframeAnimation* animation; animation = [CAKeyframeAnimation animationWithKeyPath:@"transform.rotation.z"]; animation.duration = 1.6; //…
iphone core-animation cakeyframeanimationHi i'm creating a Keyframe animation from multiple images. My problem is i would like the animation to instantly change …
core-animation cakeyframeanimation