如何将多个CAKeyframeAnimations组合成单个关键帧动画?

时间:2010-11-04 06:27:06

标签: iphone cocoa-touch core-animation calayer

说我想要合并transform

CAKeyframeAnimation *animation = [CAKeyframeAnimation
   animationWithKeyPath:@"transform"];

opacity

CAKeyframeAnimation *animation = [CAKeyframeAnimation
   animationWithKeyPath:@"opacity"];

进入关键帧动画。如何组合并指定每个关键帧的变换/不透明度值?

1 个答案:

答案 0 :(得分:3)

就像您一样创建两个动画,对它们使用相同的keyTimes,然后将它们添加到addAnimation:forKey:的图层中。就这么简单。