属性动画
CAAnimationDelegate
在任何头文件中都找不到,但是可以在CAAnimation
头文件或者苹果开发者文档中找到相关函数。在这个例子中,我们用-animationDidStop:finished:
方法在动画结束之后来更新图层的backgroundColor
。
当更新属性的时候,我们需要设置一个新的事务,并且禁用图层行为。否则动画会发生两次,一个是因为显式的CABasicAnimation
,另一次是因为隐式动画,具体实现见订单8.3。
清单8.3 动画完成之后修改图层的背景色
1 @implementation ViewController 2 3 - (void)viewDidLoad 4 { 5 [super viewDidLoad]; 6 //create sublayer 7 self.colorLayer = [CALayer layer]; 8 self.colorLayer.frame = CGRectMake(50.0f, 50.0f, 100.0f, 100.0f); 9 self.colorLayer.backgroundColor = [UIColor blueColor].CGColor; 10 //add it to our view 11 [self.layerView.layer addSublayer:self.colorLayer]; 12 } 13 14 - (IBAction)changeColor 15 { 16 //create a new random color 17 CGFloat red = arc4random() / (CGFloat)INT_MAX; 18 CGFloat green = arc4random() / (CGFloat)INT_MAX; 19 CGFloat blue = arc4random() / (CGFloat)INT_MAX; 20 UIColor *color = [UIColor colorWithRed:red green:green blue:blue alpha:1.0]; 21 //create a basic animation 22 CABasicAnimation *animation = [CABasicAnimation animation]; 23 animation.keyPath = @"backgroundColor"; 24 animation.toValue = (__bridge id)color.CGColor; 25 animation.delegate = self; 26 //apply animation to layer 27 [self.colorLayer addAnimation:animation forKey:nil]; 28 } 29 30 - (void)animationDidStop:(CABasicAnimation *)anim finished:(BOOL)flag 31 { 32 //set the backgroundColor property to match animation toValue 33 [CATransaction begin]; 34 [CATransaction setDisableActions:YES]; 35 self.colorLayer.backgroundColor = (__bridge CGColorRef)anim.toValue; 36 [CATransaction commit]; 37 } 38 39 @end
对CAAnimation
而言,使用委托模式而不是一个完成块会带来一个问题,就是当你有多个动画的时候,无法在在回调方法中区分。在一个视图控制器中创建动画的时候,通常会用控制器本身作为一个委托(如清单8.3所示),但是所有的动画都会调用同一个回调方法,所以你就需要判断到底是那个图层的调用。
考虑一下第三章的闹钟,“图层几何学”,我们通过简单地每秒更新指针的角度来实现一个钟,但如果指针动态地转向新的位置会更加真实。
我们不能通过隐式动画来实现因为这些指针都是UIView
的实例,所以图层的隐式动画都被禁用了。我们可以简单地通过UIView
的动画方法来实现。但如果想更好地控制动画时间,使用显式动画会更好(更多内容见第十章)。使用CABasicAnimation
来做动画可能会更加复杂,因为我们需要在-animationDidStop:finished:
中检测指针状态(用于设置结束的位置)。
动画本身会作为一个参数传入委托的方法,也许你会认为可以控制器中把动画存储为一个属性,然后在回调用比较,但实际上并不起作用,因为委托传入的动画参数是原始值的一个深拷贝,从而不是同一个值。
当使用-addAnimation:forKey:
把动画添加到图层,这里有一个到目前为止我们都设置为nil
的key
参数。这里的键是-animationForKey:
方法找到对应动画的唯一标识符,而当前动画的所有键都可以用animationKeys
获取。如果我们对每个动画都关联一个唯一的键,就可以对每个图层循环所有键,然后调用-animationForKey:
来比对结果。尽管这不是一个优雅的实现。
幸运的是,还有一种更加简单的方法。像所有的NSObject
子类一样,CAAnimation
实现了KVC(键-值-编码)协议,于是你可以用-setValue:forKey:
和-valueForKey:
方法来存取属性。但是CAAnimation
有一个不同的性能:它更像一个NSDictionary
,可以让你随意设置键值对,即使和你使用的动画类所声明的属性并不匹配。
这意味着你可以对动画用任意类型打标签。在这里,我们给UIView
类型的指针添加的动画,所以可以简单地判断动画到底属于哪个视图,然后在委托方法中用这个信息正确地更新钟的指针(清单8.4)。
清单8.4 使用KVC对动画打标签
1 @interface ViewController () 2 3 @property (nonatomic, weak) IBOutlet UIImageView *hourHand; 4 @property (nonatomic, weak) IBOutlet UIImageView *minuteHand; 5 @property (nonatomic, weak) IBOutlet UIImageView *secondHand; 6 @property (nonatomic, weak) NSTimer *timer; 7 8 @end 9 10 @implementation ViewController 11 12 - (void)viewDidLoad 13 { 14 [super viewDidLoad]; 15 //adjust anchor points 16 self.secondHand.layer.anchorPoint = CGPointMake(0.5f, 0.9f); 17 self.minuteHand.layer.anchorPoint = CGPointMake(0.5f, 0.9f); 18 self.hourHand.layer.anchorPoint = CGPointMake(0.5f, 0.9f); 19 //start timer 20 self.timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(tick) userInfo:nil repeats:YES]; 21 //set initial hand positions 22 [self updateHandsAnimated:NO]; 23 } 24 25 - (void)tick 26 { 27 [self updateHandsAnimated:YES]; 28 } 29 30 - (void)updateHandsAnimated:(BOOL)animated 31 { 32 //convert time to hours, minutes and seconds 33 NSCalendar *calendar = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar]; 34 NSUInteger units = NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit; 35 NSDateComponents *components = [calendar components:units fromDate:[NSDate date]]; 36 CGFloat hourAngle = (components.hour / 12.0) * M_PI * 2.0; 37 //calculate hour hand angle //calculate minute hand angle 38 CGFloat minuteAngle = (components.minute / 60.0) * M_PI * 2.0; 39 //calculate second hand angle 40 CGFloat secondAngle = (components.second / 60.0) * M_PI * 2.0; 41 //rotate hands 42 [self setAngle:hourAngle forHand:self.hourHand animated:animated]; 43 [self setAngle:minuteAngle forHand:self.minuteHand animated:animated]; 44 [self setAngle:secondAngle forHand:self.secondHand animated:animated]; 45 } 46 47 - (void)setAngle:(CGFloat)angle forHand:(UIView *)handView animated:(BOOL)animated 48 { 49 //generate transform 50 CATransform3D transform = CATransform3DMakeRotation(angle, 0, 0, 1); 51 if (animated) { 52 //create transform animation 53 CABasicAnimation *animation = [CABasicAnimation animation]; 54 [self updateHandsAnimated:NO]; 55 animation.keyPath = @"transform"; 56 animation.toValue = [NSValue valueWithCATransform3D:transform]; 57 animation.duration = 0.5; 58 animation.delegate = self; 59 [animation setValue:handView forKey:@"handView"]; 60 [handView.layer addAnimation:animation forKey:nil]; 61 } else { 62 //set transform directly 63 handView.layer.transform = transform; 64 } 65 } 66 67 - (void)animationDidStop:(CABasicAnimation *)anim finished:(BOOL)flag 68 { 69 //set final position for hand view 70 UIView *handView = [anim valueForKey:@"handView"]; 71 handView.layer.transform = [anim.toValue CATransform3DValue]; 72 }
我们成功的识别出每个图层停止动画的时间,然后更新它的变换到一个新值,很好。
不幸的是,即使做了这些,还是有个问题,清单8.4在模拟器上运行的很好,但当真正跑在iOS设备上时,我们发现在-animationDidStop:finished:
委托方法调用之前,指针会迅速返回到原始值,这个清单8.3图层颜色发生的情况一样。
问题在于回调方法在动画完成之前已经被调用了,但不能保证这发生在属性动画返回初始状态之前。这同时也很好地说明了为什么要在真实的设备上测试动画代码,而不仅仅是模拟器。
我们可以用一个fillMode
属性来解决这个问题,下一章会详细说明,这里知道在动画之前设置它比在动画结束之后更新属性更加方便。
关键帧动画
CABasicAnimation
揭示了大多数隐式动画背后依赖的机制,这的确很有趣,但是显式地给图层添加CABasicAnimation
相较于隐式动画而言,只能说费力不讨好。
CAKeyframeAnimation
是另一种UIKit没有暴露出来但功能强大的类。和CABasicAnimation
类似,CAKeyframeAnimation
同样是CAPropertyAnimation
的一个子类,它依然作用于单一的一个属性,但是和CABasicAnimation
不一样的是,它不限制于设置一个起始和结束的值,而是可以根据一连串随意的值来做动画。
关键帧起源于传动动画,意思是指主导的动画在显著改变发生时重绘当前帧(也就是关键帧),每帧之间剩下的绘制(可以通过关键帧推算出)将由熟练的艺术家来完成。CAKeyframeAnimation
也是同样的道理:你提供了显著的帧,然后Core Animation在每帧之间进行插入。
我们可以用之前使用颜色图层的例子来演示,设置一个颜色的数组,然后通过关键帧动画播放出来(清单8.5)
清单8.5 使用CAKeyframeAnimation
应用一系列颜色的变化
1 - (IBAction)changeColor 2 { 3 //create a keyframe animation 4 CAKeyframeAnimation *animation = [CAKeyframeAnimation animation]; 5 animation.keyPath = @"backgroundColor"; 6 animation.duration = 2.0; 7 animation.values = @[ 8 (__bridge id)[UIColor blueColor].CGColor, 9 (__bridge id)[UIColor redColor].CGColor, 10 (__bridge id)[UIColor greenColor].CGColor, 11 (__bridge id)[UIColor blueColor].CGColor ]; 12 //apply animation to layer 13 [self.colorLayer addAnimation:animation forKey:nil]; 14 }
注意到序列中开始和结束的颜色都是蓝色,这是因为CAKeyframeAnimation
并不能自动把当前值作为第一帧(就像CABasicAnimation
那样把fromValue
设为nil
)。动画会在开始的时候突然跳转到第一帧的值,然后在动画结束的时候突然恢复到原始的值。所以为了动画的平滑特性,我们需要开始和结束的关键帧来匹配当前属性的值。
当然可以创建一个结束和开始值不同的动画,那样的话就需要在动画启动之前手动更新属性和最后一帧的值保持一致,就和之前讨论的一样。
我们用duration
属性把动画时间从默认的0.25秒增加到2秒,以便于动画做的不那么快。运行它,你会发现动画通过颜色不断循环,但效果看起来有些奇怪。原因在于动画以一个恒定的步调在运行。当在每个动画之间过渡的时候并没有减速,这就产生了一个略微奇怪的效果,为了让动画看起来更自然,我们需要调整一下缓冲,第十章将会详细说明。
提供一个数组的值就可以按照颜色变化做动画,但一般来说用数组来描述动画运动并不直观。CAKeyframeAnimation
有另一种方式去指定动画,就是使用CGPath
。path
属性可以用一种直观的方式,使用Core Graphics函数定义运动序列来绘制动画。
我们来用一个宇宙飞船沿着一个简单曲线的实例演示一下。为了创建路径,我们需要使用一个三次贝塞尔曲线,它是一种使用开始点,结束点和另外两个控制点来定义形状的曲线,可以通过使用一个基于C的Core Graphics绘图指令来创建,不过用UIKit提供的UIBezierPath
类会更简单。
我们这次用CAShapeLayer
来在屏幕上绘制曲线,尽管对动画来说并不是必须的,但这会让我们的动画更加形象。绘制完CGPath
之后,我们用它来创建一个CAKeyframeAnimation
,然后用它来应用到我们的宇宙飞船。代码见清单8.6,结果见图8.1。
清单8.6 沿着一个贝塞尔曲线对图层做动画
1 @interface ViewController () 2 3 @property (nonatomic, weak) IBOutlet UIView *containerView; 4 5 @end 6 7 @implementation ViewController 8 9 - (void)viewDidLoad 10 { 11 [super viewDidLoad]; 12 //create a path 13 UIBezierPath *bezierPath = [[UIBezierPath alloc] init]; 14 [bezierPath moveToPoint:CGPointMake(0, 150)]; 15 [bezierPath addCurveToPoint:CGPointMake(300, 150) controlPoint1:CGPointMake(75, 0) controlPoint2:CGPointMake(225, 300)]; 16 //draw the path using a CAShapeLayer 17 CAShapeLayer *pathLayer = [CAShapeLayer layer]; 18 pathLayer.path = bezierPath.CGPath; 19 pathLayer.fillColor = [UIColor clearColor].CGColor; 20 pathLayer.strokeColor = [UIColor redColor].CGColor; 21 pathLayer.lineWidth = 3.0f; 22 [self.containerView.layer addSublayer:pathLayer]; 23 //add the ship 24 CALayer *shipLayer = [CALayer layer]; 25 shipLayer.frame = CGRectMake(0, 0, 64, 64); 26 shipLayer.position = CGPointMake(0, 150); 27 shipLayer.contents = (__bridge id)[UIImage imageNamed: @"Ship.png"].CGImage; 28 [self.containerView.layer addSublayer:shipLayer]; 29 //create the keyframe animation 30 CAKeyframeAnimation *animation = [CAKeyframeAnimation animation]; 31 animation.keyPath = @"position"; 32 animation.duration = 4.0; 33 animation.path = bezierPath.CGPath; 34 [shipLayer addAnimation:animation forKey:nil]; 35 } 36 37 @end
图8.1 沿着一个贝塞尔曲线移动的宇宙飞船图片
运行示例,你会发现飞船的动画有些不太真实,这是因为当它运动的时候永远指向右边,而不是指向曲线切线的方向。你可以调整它的affineTransform
来对运动方向做动画,但很可能和其它的动画冲突。
幸运的是,苹果预见到了这点,并且给CAKeyFrameAnimation
添加了一个rotationMode
的属性。设置它为常量kCAAnimationRotateAuto
(清单8.7),图层将会根据曲线的切线自动旋转(图8.2)。
清单8.7 通过rotationMode
自动对齐图层到曲线
1 - (void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 //create a path 5 ... 6 //create the keyframe animation 7 CAKeyframeAnimation *animation = [CAKeyframeAnimation animation]; 8 animation.keyPath = @"position"; 9 animation.duration = 4.0; 10 animation.path = bezierPath.CGPath; 11 animation.rotationMode = kCAAnimationRotateAuto; 12 [shipLayer addAnimation:animation forKey:nil]; 13 }
图8.2 匹配曲线切线方向的飞船图层
虚拟属性
之前提到过属性动画实际上是针对于关键路径而不是一个键,这就意味着可以对子属性甚至是虚拟属性做动画。但是虚拟属性到底是什么呢?
考虑一个旋转的动画:如果想要对一个物体做旋转的动画,那就需要作用于transform
属性,因为CALayer
没有显式提供角度或者方向之类的属性,代码如清单8.8所示
清单8.8 用transform
属性对图层做动画
1 @interface ViewController () 2 3 @property (nonatomic, weak) IBOutlet UIView *containerView; 4 5 @end 6 7 @implementation ViewController 8 9 - (void)viewDidLoad 10 { 11 [super viewDidLoad]; 12 //add the ship 13 CALayer *shipLayer = [CALayer layer]; 14 shipLayer.frame = CGRectMake(0, 0, 128, 128); 15 shipLayer.position = CGPointMake(150, 150); 16 shipLayer.contents = (__bridge id)[UIImage imageNamed: @"Ship.png"].CGImage; 17 [self.containerView.layer addSublayer:shipLayer]; 18 //animate the ship rotation 19 CABasicAnimation *animation = [CABasicAnimation animation]; 20 animation.keyPath = @"transform"; 21 animation.duration = 2.0; 22 animation.toValue = [NSValue valueWithCATransform3D: CATransform3DMakeRotation(M_PI, 0, 0, 1)]; 23 [shipLayer addAnimation:animation forKey:nil]; 24 } 25 26 @end
这么做是可行的,但看起来更因为是运气而不是设计的原因,如果我们把旋转的值从M_PI
(180度)调整到2 * M_PI
(360度),然后运行程序,会发现这时候飞船完全不动了。这是因为这里的矩阵做了一次360度的旋转,和做了0度是一样的,所以最后的值根本没变。
现在继续使用M_PI
,但这次用byValue
而不是toValue
。也许你会认为这和设置toValue
结果一样,因为0 + 90度 == 90度,但实际上飞船的图片变大了,并没有做任何旋转,这是因为变换矩阵不能像角度值那样叠加。
那么如果需要独立于角度之外单独对平移或者缩放做动画呢?由于都需要我们来修改transform
属性,实时地重新计算每个时间点的每个变换效果,然后根据这些创建一个复杂的关键帧动画,这一切都是为了对图层的一个独立做一个简单的动画。
幸运的是,有一个更好的解决方案:为了旋转图层,我们可以对transform.rotation
关键路径应用动画,而不是transform
本身(清单8.9)。
清单8.9 对虚拟的transform.rotation
属性做动画
1 @interface ViewController () 2 3 @property (nonatomic, weak) IBOutlet UIView *containerView; 4 5 @end 6 7 @implementation ViewController 8 9 - (void)viewDidLoad 10 { 11 [super viewDidLoad]; 12 //add the ship 13 CALayer *shipLayer = [CALayer layer]; 14 shipLayer.frame = CGRectMake(0, 0, 128, 128); 15 shipLayer.position = CGPointMake(150, 150); 16 shipLayer.contents = (__bridge id)[UIImage imageNamed: @"Ship.png"].CGImage; 17 [self.containerView.layer addSublayer:shipLayer]; 18 //animate the ship rotation 19 CABasicAnimation *animation = [CABasicAnimation animation]; 20 animation.keyPath = @"transform.rotation"; 21 animation.duration = 2.0; 22 animation.byValue = @(M_PI * 2); 23 [shipLayer addAnimation:animation forKey:nil]; 24 } 25 26 @end
结果运行的特别好,用transform.rotation
而不是transform
做动画的好处如下:
- 我们可以不通过关键帧一步旋转多于180度的动画。
- 可以用相对值而不是绝对值旋转(设置
byValue
而不是toValue
)。 - 可以不用创建
CATransform3D
,而是使用一个简单的数值来指定角度。 - 不会和
transform.position
或者transform.scale
冲突(同样是使用关键路径来做独立的动画属性)。
transform.rotation
属性有一个奇怪的问题是它其实并不存在。这是因为CATransform3D
并不是一个对象,它实际上是一个结构体,也没有符合KVC相关属性,transform.rotation
实际上是一个CALayer
用于处理动画变换的虚拟属性。
你不可以直接设置transform.rotation
或者transform.scale
,他们不能被直接使用。当你对他们做动画时,Core Animation自动地根据通过CAValueFunction
来计算的值来更新transform
属性。
CAValueFunction
用于把我们赋给虚拟的transform.rotation
简单浮点值转换成真正的用于摆放图层的CATransform3D
矩阵值。你可以通过设置CAPropertyAnimation
的valueFunction
属性来改变,于是你设置的函数将会覆盖默认的函数。
CAValueFunction
看起来似乎是对那些不能简单相加的属性(例如变换矩阵)做动画的非常有用的机制,但由于CAValueFunction
的实现细节是私有的,所以目前不能通过继承它来自定义。你可以通过使用苹果目前已近提供的常量(目前都是和变换矩阵的虚拟属性相关,所以没太多使用场景了,因为这些属性都有了默认的实现方式)。