缓冲

生活和艺术一样,最美的永远是曲线。 — 爱德华布尔沃 - 利顿

在第九章“图层时间”中,我们讨论了动画时间和CAMediaTiming协议。现在我们来看一下另一个和时间相关的机制—所谓的缓冲。Core Animation使用缓冲来使动画移动更平滑更自然,而不是看起来的那种机械和人工,在这一章我们将要研究如何对你的动画控制和自定义缓冲曲线。

动画速度

动画实际上就是一段时间内的变化,这就暗示了变化一定是随着某个特定的速率进行。速率由以下公式计算而来:

  1. velocity = change / time

这里的变化可以指的是一个物体移动的距离,时间指动画持续的时长,用这样的一个移动可以更加形象的描述(比如positionbounds属性的动画),但实际上它应用于任意可以做动画的属性(比如coloropacity)。

上面的等式假设了速度在整个动画过程中都是恒定不变的(就如同第八章“显式动画”的情况),对于这种恒定速度的动画我们称之为“线性步调”,而且从技术的角度而言这也是实现动画最简单的方式,但也是完全不真实的一种效果。

考虑一个场景,一辆车行驶在一定距离内,它并不会一开始就以60mph的速度行驶,然后到达终点后突然变成0mph。一是因为需要无限大的加速度(即使是最好的车也不会在0秒内从0跑到60),另外不然的话会干死所有乘客。在现实中,它会慢慢地加速到全速,然后当它接近终点的时候,它会慢慢地减速,直到最后停下来。

那么对于一个掉落到地上的物体又会怎样呢?它会首先停在空中,然后一直加速到落到地面,然后突然停止(然后由于积累的动能转换伴随着一声巨响,砰!)。

现实生活中的任何一个物体都会在运动中加速或者减速。那么我们如何在动画中实现这种加速度呢?一种方法是使用物理引擎来对运动物体的摩擦和动量来建模,然而这会使得计算过于复杂。我们称这种类型的方程为缓冲函数,幸运的是,Core Animation内嵌了一系列标准函数提供给我们使用。

CAMediaTimingFunction

那么该如何使用缓冲方程式呢?首先需要设置CAAnimationtimingFunction属性,是CAMediaTimingFunction类的一个对象。如果想改变隐式动画的计时函数,同样也可以使用CATransaction+setAnimationTimingFunction:方法。

这里有一些方式来创建CAMediaTimingFunction,最简单的方式是调用+timingFunctionWithName:的构造方法。这里传入如下几个常量之一:

  1. kCAMediaTimingFunctionLinear
  2. kCAMediaTimingFunctionEaseIn
  3. kCAMediaTimingFunctionEaseOut
  4. kCAMediaTimingFunctionEaseInEaseOut
  5. kCAMediaTimingFunctionDefault

kCAMediaTimingFunctionLinear选项创建了一个线性的计时函数,同样也是CAAnimationtimingFunction属性为空时候的默认函数。线性步调对于那些立即加速并且保持匀速到达终点的场景会有意义(例如射出枪膛的子弹),但是默认来说它看起来很奇怪,因为对大多数的动画来说确实很少用到。

kCAMediaTimingFunctionEaseIn常量创建了一个慢慢加速然后突然停止的方法。对于之前提到的自由落体的例子来说很适合,或者比如对准一个目标的导弹的发射。

kCAMediaTimingFunctionEaseOut则恰恰相反,它以一个全速开始,然后慢慢减速停止。它有一个削弱的效果,应用的场景比如一扇门慢慢地关上,而不是砰地一声。

kCAMediaTimingFunctionEaseInEaseOut创建了一个慢慢加速然后再慢慢减速的过程。这是现实世界大多数物体移动的方式,也是大多数动画来说最好的选择。如果只可以用一种缓冲函数的话,那就必须是它了。那么你会疑惑为什么这不是默认的选择,实际上当使用UIView的动画方法时,他的确是默认的,但当创建CAAnimation的时候,就需要手动设置它了。

最后还有一个kCAMediaTimingFunctionDefault,它和kCAMediaTimingFunctionEaseInEaseOut很类似,但是加速和减速的过程都稍微有些慢。它和kCAMediaTimingFunctionEaseInEaseOut的区别很难察觉,可能是苹果觉得它对于隐式动画来说更适合(然后对UIKit就改变了想法,而是使用kCAMediaTimingFunctionEaseInEaseOut作为默认效果),虽然它的名字说是默认的,但还是要记住当创建显式CAAnimation它并不是默认选项(换句话说,默认的图层行为动画用kCAMediaTimingFunctionDefault作为它们的计时方法)。

你可以使用一个简单的测试工程来实验一下(清单10.1),在运行之前改变缓冲函数的代码,然后点击任何地方来观察图层是如何通过指定的缓冲移动的。

清单10.1 缓冲函数的简单测试

  1. @interface ViewController ()
  2. @property (nonatomic, strong) CALayer *colorLayer;
  3. @end
  4. @implementation ViewController
  5. - (void)viewDidLoad
  6. {
  7. [super viewDidLoad];
  8. //create a red layer
  9. self.colorLayer = [CALayer layer];
  10. self.colorLayer.frame = CGRectMake(0, 0, 100, 100);
  11. self.colorLayer.position = CGPointMake(self.view.bounds.size.width/2.0, self.view.bounds.size.height/2.0);
  12. self.colorLayer.backgroundColor = [UIColor redColor].CGColor;
  13. [self.view.layer addSublayer:self.colorLayer];
  14. }
  15. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
  16. {
  17. //configure the transaction
  18. [CATransaction begin];
  19. [CATransaction setAnimationDuration:1.0];
  20. [CATransaction setAnimationTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];
  21. //set the position
  22. self.colorLayer.position = [[touches anyObject] locationInView:self.view];
  23. //commit transaction
  24. [CATransaction commit];
  25. }
  26. @end

UIView的动画缓冲

UIKit的动画也同样支持这些缓冲方法的使用,尽管语法和常量有些不同,为了改变UIView动画的缓冲选项,给options参数添加如下常量之一:

  1. UIViewAnimationOptionCurveEaseInOut
  2. UIViewAnimationOptionCurveEaseIn
  3. UIViewAnimationOptionCurveEaseOut
  4. UIViewAnimationOptionCurveLinear

它们和CAMediaTimingFunction紧密关联,UIViewAnimationOptionCurveEaseInOut是默认值(这里没有kCAMediaTimingFunctionDefault相对应的值了)。

具体使用方法见清单10.2(注意到这里不再使用UIView额外添加的图层,因为UIKit的动画并不支持这类图层)。

清单10.2 使用UIKit动画的缓冲测试工程

  1. @interface ViewController ()
  2. @property (nonatomic, strong) UIView *colorView;
  3. @end
  4. @implementation ViewController
  5. - (void)viewDidLoad
  6. {
  7. [super viewDidLoad];
  8. //create a red layer
  9. self.colorView = [[UIView alloc] init];
  10. self.colorView.bounds = CGRectMake(0, 0, 100, 100);
  11. self.colorView.center = CGPointMake(self.view.bounds.size.width / 2, self.view.bounds.size.height / 2);
  12. self.colorView.backgroundColor = [UIColor redColor];
  13. [self.view addSubview:self.colorView];
  14. }
  15. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
  16. {
  17. //perform the animation
  18. [UIView animateWithDuration:1.0 delay:0.0
  19. options:UIViewAnimationOptionCurveEaseOut
  20. animations:^{
  21. //set the position
  22. self.colorView.center = [[touches anyObject] locationInView:self.view];
  23. }
  24. completion:NULL];
  25. }
  26. @end

缓冲和关键帧动画

或许你会回想起第八章里面颜色切换的关键帧动画由于线性变换的原因(见清单8.5)看起来有些奇怪,使得颜色变换非常不自然。为了纠正这点,我们来用更加合适的缓冲方法,例如kCAMediaTimingFunctionEaseIn,给图层的颜色变化添加一点脉冲效果,让它更像现实中的一个彩色灯泡。

我们不想给整个动画过程应用这个效果,我们希望对每个动画的过程重复这样的缓冲,于是每次颜色的变换都会有脉冲效果。

CAKeyframeAnimation有一个NSArray类型的timingFunctions属性,我们可以用它来对每次动画的步骤指定不同的计时函数。但是指定函数的个数一定要等于keyframes数组的元素个数减一,因为它是描述每一帧之间动画速度的函数。

在这个例子中,我们自始至终想使用同一个缓冲函数,但我们同样需要一个函数的数组来告诉动画不停地重复每个步骤,而不是在整个动画序列只做一次缓冲,我们简单地使用包含多个相同函数拷贝的数组就可以了(见清单10.3)。

运行更新后的代码,你会发现动画看起来更加自然了。

清单10.3 对CAKeyframeAnimation使用CAMediaTimingFunction

  1. @interface ViewController ()
  2. @property (nonatomic, weak) IBOutlet UIView *layerView;
  3. @property (nonatomic, weak) IBOutlet CALayer *colorLayer;
  4. @end
  5. @implementation ViewController
  6. - (void)viewDidLoad
  7. {
  8. [super viewDidLoad];
  9. //create sublayer
  10. self.colorLayer = [CALayer layer];
  11. self.colorLayer.frame = CGRectMake(50.0f, 50.0f, 100.0f, 100.0f);
  12. self.colorLayer.backgroundColor = [UIColor blueColor].CGColor;
  13. //add it to our view
  14. [self.layerView.layer addSublayer:self.colorLayer];
  15. }
  16. - (IBAction)changeColor
  17. {
  18. //create a keyframe animation
  19. CAKeyframeAnimation *animation = [CAKeyframeAnimation animation];
  20. animation.keyPath = @"backgroundColor";
  21. animation.duration = 2.0;
  22. animation.values = @[
  23. (__bridge id)[UIColor blueColor].CGColor,
  24. (__bridge id)[UIColor redColor].CGColor,
  25. (__bridge id)[UIColor greenColor].CGColor,
  26. (__bridge id)[UIColor blueColor].CGColor ];
  27. //add timing function
  28. CAMediaTimingFunction *fn = [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseIn];
  29. animation.timingFunctions = @[fn, fn, fn];
  30. //apply animation to layer
  31. [self.colorLayer addAnimation:animation forKey:nil];
  32. }
  33. @end

自定义缓冲函数

在第八章中,我们给时钟项目添加了动画。看起来很赞,但是如果有合适的缓冲函数就更好了。在现实世界中,钟表指针转动的时候,通常起步很慢,然后迅速啪地一声,最后缓冲到终点。但是标准的缓冲函数在这里没一个适合它,那该如何创建一个新的呢?

除了+functionWithName:之外,CAMediaTimingFunction同样有另一个构造函数,一个有四个浮点参数的+functionWithControlPoints::::(注意这里奇怪的语法,并没有包含具体每个参数的名称,这在objective-C中是合法的,但是却违反了苹果对方法命名的指导方针,而且看起来是一个奇怪的设计)。

使用这个方法,我们可以创建一个自定义的缓冲函数,来匹配我们的时钟动画,为了理解如何使用这个方法,我们要了解一些CAMediaTimingFunction是如何工作的。

三次贝塞尔曲线

CAMediaTimingFunction函数的主要原则在于它把输入的时间转换成起点和终点之间成比例的改变。我们可以用一个简单的图标来解释,横轴代表时间,纵轴代表改变的量,于是线性的缓冲就是一条从起点开始的简单的斜线(图10.1)。

图10.1

图10.1 线性缓冲函数的图像

这条曲线的斜率代表了速度,斜率的改变代表了加速度,原则上来说,任何加速的曲线都可以用这种图像来表示,但是CAMediaTimingFunction使用了一个叫做三次贝塞尔曲线的函数,它只可以产出指定缓冲函数的子集(我们之前在第八章中创建CAKeyframeAnimation路径的时候提到过三次贝塞尔曲线)。

你或许会回想起,一个三次贝塞尔曲线通过四个点来定义,第一个和最后一个点代表了曲线的起点和终点,剩下中间两个点叫做控制点,因为它们控制了曲线的形状,贝塞尔曲线的控制点其实是位于曲线之外的点,也就是说曲线并不一定要穿过它们。你可以把它们想象成吸引经过它们曲线的磁铁。

图10.2展示了一个三次贝塞尔缓冲函数的例子

图10.2

图10.2 三次贝塞尔缓冲函数

实际上它是一个很奇怪的函数,先加速,然后减速,最后快到达终点的时候又加速,那么标准的缓冲函数又该如何用图像来表示呢?

CAMediaTimingFunction有一个叫做-getControlPointAtIndex:values:的方法,可以用来检索曲线的点,这个方法的设计的确有点奇怪(或许也就只有苹果能回答为什么不简单返回一个CGPoint),但是使用它我们可以找到标准缓冲函数的点,然后用UIBezierPathCAShapeLayer来把它画出来。

曲线的起始和终点始终是{0, 0}和{1, 1},于是我们只需要检索曲线的第二个和第三个点(控制点)。具体代码见清单10.4。所有的标准缓冲函数的图像见图10.3。

清单10.4 使用UIBezierPath绘制CAMediaTimingFunction

  1. @interface ViewController ()
  2. @property (nonatomic, weak) IBOutlet UIView *layerView;
  3. @end
  4. @implementation ViewController
  5. - (void)viewDidLoad
  6. {
  7. [super viewDidLoad];
  8. //create timing function
  9. CAMediaTimingFunction *function = [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseOut];
  10. //get control points
  11. CGPoint controlPoint1, controlPoint2;
  12. [function getControlPointAtIndex:1 values:(float *)&controlPoint1];
  13. [function getControlPointAtIndex:2 values:(float *)&controlPoint2];
  14. //create curve
  15. UIBezierPath *path = [[UIBezierPath alloc] init];
  16. [path moveToPoint:CGPointZero];
  17. [path addCurveToPoint:CGPointMake(1, 1)
  18. controlPoint1:controlPoint1 controlPoint2:controlPoint2];
  19. //scale the path up to a reasonable size for display
  20. [path applyTransform:CGAffineTransformMakeScale(200, 200)];
  21. //create shape layer
  22. CAShapeLayer *shapeLayer = [CAShapeLayer layer];
  23. shapeLayer.strokeColor = [UIColor redColor].CGColor;
  24. shapeLayer.fillColor = [UIColor clearColor].CGColor;
  25. shapeLayer.lineWidth = 4.0f;
  26. shapeLayer.path = path.CGPath;
  27. [self.layerView.layer addSublayer:shapeLayer];
  28. //flip geometry so that 0,0 is in the bottom-left
  29. self.layerView.layer.geometryFlipped = YES;
  30. }
  31. @end

图10.3

图10.3 标准CAMediaTimingFunction缓冲曲线

那么对于我们自定义时钟指针的缓冲函数来说,我们需要初始微弱,然后迅速上升,最后缓冲到终点的曲线,通过一些实验之后,最终结果如下:

  1. [CAMediaTimingFunction functionWithControlPoints:1 :0 :0.75 :1];

如果把它转换成缓冲函数的图像,最后如图10.4所示,如果把它添加到时钟的程序,就形成了之前一直期待的非常赞的效果(见代清单10.5)。

图10.4

图10.4 自定义适合时钟的缓冲函数

清单10.5 添加了自定义缓冲函数的时钟程序

  1. - (void)setAngle:(CGFloat)angle forHand:(UIView *)handView animated:(BOOL)animated
  2. {
  3. //generate transform
  4. CATransform3D transform = CATransform3DMakeRotation(angle, 0, 0, 1);
  5. if (animated) {
  6. //create transform animation
  7. CABasicAnimation *animation = [CABasicAnimation animation];
  8. animation.keyPath = @"transform";
  9. animation.fromValue = [handView.layer.presentationLayer valueForKey:@"transform"];
  10. animation.toValue = [NSValue valueWithCATransform3D:transform];
  11. animation.duration = 0.5;
  12. animation.delegate = self;
  13. animation.timingFunction = [CAMediaTimingFunction functionWithControlPoints:1 :0 :0.75 :1];
  14. //apply animation
  15. handView.layer.transform = transform;
  16. [handView.layer addAnimation:animation forKey:nil];
  17. } else {
  18. //set transform directly
  19. handView.layer.transform = transform;
  20. }
  21. }

更加复杂的动画曲线

考虑一个橡胶球掉落到坚硬的地面的场景,当开始下落的时候,它会持续加速知道落到地面,然后经过几次反弹,最后停下来。如果用一张图来说明,它会如图10.5所示。

图10.5

图10.5 一个没法用三次贝塞尔曲线描述的反弹的动画

这种效果没法用一个简单的三次贝塞尔曲线表示,于是不能用CAMediaTimingFunction来完成。但如果想要实现这样的效果,可以用如下几种方法:

  • CAKeyframeAnimation创建一个动画,然后分割成几个步骤,每个小步骤使用自己的计时函数(具体下节介绍)。
  • 使用定时器逐帧更新实现动画(见第11章,“基于定时器的动画”)。

基于关键帧的缓冲

为了使用关键帧实现反弹动画,我们需要在缓冲曲线中对每一个显著的点创建一个关键帧(在这个情况下,关键点也就是每次反弹的峰值),然后应用缓冲函数把每段曲线连接起来。同时,我们也需要通过keyTimes来指定每个关键帧的时间偏移,由于每次反弹的时间都会减少,于是关键帧并不会均匀分布。

清单10.6展示了实现反弹球动画的代码(见图10.6)

清单10.6 使用关键帧实现反弹球的动画

  1. @interface ViewController ()
  2. @property (nonatomic, weak) IBOutlet UIView *containerView;
  3. @property (nonatomic, strong) UIImageView *ballView;
  4. @end
  5. @implementation ViewController
  6. - (void)viewDidLoad
  7. {
  8. [super viewDidLoad];
  9. //add ball image view
  10. UIImage *ballImage = [UIImage imageNamed:@"Ball.png"];
  11. self.ballView = [[UIImageView alloc] initWithImage:ballImage];
  12. [self.containerView addSubview:self.ballView];
  13. //animate
  14. [self animate];
  15. }
  16. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
  17. {
  18. //replay animation on tap
  19. [self animate];
  20. }
  21. - (void)animate
  22. {
  23. //reset ball to top of screen
  24. self.ballView.center = CGPointMake(150, 32);
  25. //create keyframe animation
  26. CAKeyframeAnimation *animation = [CAKeyframeAnimation animation];
  27. animation.keyPath = @"position";
  28. animation.duration = 1.0;
  29. animation.delegate = self;
  30. animation.values = @[
  31. [NSValue valueWithCGPoint:CGPointMake(150, 32)],
  32. [NSValue valueWithCGPoint:CGPointMake(150, 268)],
  33. [NSValue valueWithCGPoint:CGPointMake(150, 140)],
  34. [NSValue valueWithCGPoint:CGPointMake(150, 268)],
  35. [NSValue valueWithCGPoint:CGPointMake(150, 220)],
  36. [NSValue valueWithCGPoint:CGPointMake(150, 268)],
  37. [NSValue valueWithCGPoint:CGPointMake(150, 250)],
  38. [NSValue valueWithCGPoint:CGPointMake(150, 268)]
  39. ];
  40. animation.timingFunctions = @[
  41. [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseIn],
  42. [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseOut],
  43. [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseIn],
  44. [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseOut],
  45. [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseIn],
  46. [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseOut],
  47. [CAMediaTimingFunction functionWithName: kCAMediaTimingFunctionEaseIn]
  48. ];
  49. animation.keyTimes = @[@0.0, @0.3, @0.5, @0.7, @0.8, @0.9, @0.95, @1.0];
  50. //apply animation
  51. self.ballView.layer.position = CGPointMake(150, 268);
  52. [self.ballView.layer addAnimation:animation forKey:nil];
  53. }
  54. @end

图10.6

图10.6 使用关键帧实现的反弹球动画

这种方式还算不错,但是实现起来略显笨重(因为要不停地尝试计算各种关键帧和时间偏移)并且和动画强绑定了(因为如果要改变动画的一个属性,那就意味着要重新计算所有的关键帧)。那该如何写一个方法,用缓冲函数来把任何简单的属性动画转换成关键帧动画呢,下面我们来实现它。

流程自动化

在清单10.6中,我们把动画分割成相当大的几块,然后用Core Animation的缓冲进入和缓冲退出函数来大约形成我们想要的曲线。但如果我们把动画分割成更小的几部分,那么我们就可以用直线来拼接这些曲线(也就是线性缓冲)。为了实现自动化,我们需要知道如何做如下两件事情:

  • 自动把任意属性动画分割成多个关键帧
  • 用一个数学函数表示弹性动画,使得可以对帧做便宜

为了解决第一个问题,我们需要复制Core Animation的插值机制。这是一个传入起点和终点,然后在这两个点之间指定时间点产出一个新点的机制。对于简单的浮点起始值,公式如下(假设时间从0到1):

  1. value = (endValue startValue) × time + startValue;

那么如果要插入一个类似于CGPointCGColorRef或者CATransform3D这种更加复杂类型的值,我们可以简单地对每个独立的元素应用这个方法(也就CGPoint中的x和y值,CGColorRef中的红,蓝,绿,透明值,或者是CATransform3D中独立矩阵的坐标)。我们同样需要一些逻辑在插值之前对对象拆解值,然后在插值之后在重新封装成对象,也就是说需要实时地检查类型。

一旦我们可以用代码获取属性动画的起始值之间的任意插值,我们就可以把动画分割成许多独立的关键帧,然后产出一个线性的关键帧动画。清单10.7展示了相关代码。

注意到我们用了60 x 动画时间(秒做单位)作为关键帧的个数,这时因为Core Animation按照每秒60帧去渲染屏幕更新,所以如果我们每秒生成60个关键帧,就可以保证动画足够的平滑(尽管实际上很可能用更少的帧率就可以达到很好的效果)。

我们在示例中仅仅引入了对CGPoint类型的插值代码。但是,从代码中很清楚能看出如何扩展成支持别的类型。作为不能识别类型的备选方案,我们仅仅在前一半返回了fromValue,在后一半返回了toValue

清单10.7 使用插入的值创建一个关键帧动画

  1. float interpolate(float from, float to, float time)
  2. {
  3. return (to - from) * time + from;
  4. }
  5. - (id)interpolateFromValue:(id)fromValue toValue:(id)toValue time:(float)time
  6. {
  7. if ([fromValue isKindOfClass:[NSValue class]]) {
  8. //get type
  9. const char *type = [fromValue objCType];
  10. if (strcmp(type, @encode(CGPoint)) == 0) {
  11. CGPoint from = [fromValue CGPointValue];
  12. CGPoint to = [toValue CGPointValue];
  13. CGPoint result = CGPointMake(interpolate(from.x, to.x, time), interpolate(from.y, to.y, time));
  14. return [NSValue valueWithCGPoint:result];
  15. }
  16. }
  17. //provide safe default implementation
  18. return (time < 0.5)? fromValue: toValue;
  19. }
  20. - (void)animate
  21. {
  22. //reset ball to top of screen
  23. self.ballView.center = CGPointMake(150, 32);
  24. //set up animation parameters
  25. NSValue *fromValue = [NSValue valueWithCGPoint:CGPointMake(150, 32)];
  26. NSValue *toValue = [NSValue valueWithCGPoint:CGPointMake(150, 268)];
  27. CFTimeInterval duration = 1.0;
  28. //generate keyframes
  29. NSInteger numFrames = duration * 60;
  30. NSMutableArray *frames = [NSMutableArray array];
  31. for (int i = 0; i < numFrames; i++) {
  32. float time = 1 / (float)numFrames * i;
  33. [frames addObject:[self interpolateFromValue:fromValue toValue:toValue time:time]];
  34. }
  35. //create keyframe animation
  36. CAKeyframeAnimation *animation = [CAKeyframeAnimation animation];
  37. animation.keyPath = @"position";
  38. animation.duration = 1.0;
  39. animation.delegate = self;
  40. animation.values = frames;
  41. //apply animation
  42. [self.ballView.layer addAnimation:animation forKey:nil];
  43. }

这可以起到作用,但效果并不是很好,到目前为止我们所完成的只是一个非常复杂的方式来使用线性缓冲复制CABasicAnimation的行为。这种方式的好处在于我们可以更加精确地控制缓冲,这也意味着我们可以应用一个完全定制的缓冲函数。那么该如何做呢?

缓冲背后的数学并不很简单,但是幸运的是我们不需要一一实现它。罗伯特·彭纳有一个网页关于缓冲函数(http://www.robertpenner.com/easing),包含了大多数普遍的缓冲函数的多种编程语言的实现的链接,包括C。这里是一个缓冲进入缓冲退出函数的示例(实际上有很多不同的方式去实现它)。

  1. float quadraticEaseInOut(float t)
  2. {
  3. return (t < 0.5)? (2 * t * t): (-2 * t * t) + (4 * t) - 1;
  4. }

对我们的弹性球来说,我们可以使用bounceEaseOut函数:

  1. float bounceEaseOut(float t)
  2. {
  3. if (t < 4/11.0) {
  4. return (121 * t * t)/16.0;
  5. } else if (t < 8/11.0) {
  6. return (363/40.0 * t * t) - (99/10.0 * t) + 17/5.0;
  7. } else if (t < 9/10.0) {
  8. return (4356/361.0 * t * t) - (35442/1805.0 * t) + 16061/1805.0;
  9. }
  10. return (54/5.0 * t * t) - (513/25.0 * t) + 268/25.0;
  11. }

如果修改清单10.7的代码来引入bounceEaseOut方法,我们的任务就是仅仅交换缓冲函数,现在就可以选择任意的缓冲类型创建动画了(见清单10.8)。

清单10.8 用关键帧实现自定义的缓冲函数

  1. - (void)animate
  2. {
  3. //reset ball to top of screen
  4. self.ballView.center = CGPointMake(150, 32);
  5. //set up animation parameters
  6. NSValue *fromValue = [NSValue valueWithCGPoint:CGPointMake(150, 32)];
  7. NSValue *toValue = [NSValue valueWithCGPoint:CGPointMake(150, 268)];
  8. CFTimeInterval duration = 1.0;
  9. //generate keyframes
  10. NSInteger numFrames = duration * 60;
  11. NSMutableArray *frames = [NSMutableArray array];
  12. for (int i = 0; i < numFrames; i++) {
  13. float time = 1/(float)numFrames * i;
  14. //apply easing
  15. time = bounceEaseOut(time);
  16. //add keyframe
  17. [frames addObject:[self interpolateFromValue:fromValue toValue:toValue time:time]];
  18. }
  19. //create keyframe animation
  20. CAKeyframeAnimation *animation = [CAKeyframeAnimation animation];
  21. animation.keyPath = @"position";
  22. animation.duration = 1.0;
  23. animation.delegate = self;
  24. animation.values = frames;
  25. //apply animation
  26. [self.ballView.layer addAnimation:animation forKey:nil];
  27. }

总结

在这一章中,我们了解了有关缓冲和CAMediaTimingFunction类,它可以允许我们创建自定义的缓冲函数来完善我们的动画,同样了解了如何用CAKeyframeAnimation来避开CAMediaTimingFunction的限制,创建完全自定义的缓冲函数。

在下一章中,我们将要研究基于定时器的动画—另一个给我们对动画更多控制的选择,并且实现对动画的实时操纵。