QuartzCore 之 CAAnimation.h

摘要: 动画效果可以给用户提供流畅的用户体验,在iOS系统中,Core Animation提供了一定的API来实现一些动画效果。今天我们来学习下QuartzCore中 CAAnimation.h 类以及他的子类。

Apple官方提供CAAnimation继承关系

先来介绍下苹果提供的API,如下(通过这次也教大家如何查看Apple官方提供的 API)

  • 通过开发工具 Xcode找到对应的.h 文件
#import <QuartzCore/CALayer.h>
#import <Foundation/NSObject.h>

@class NSArray, NSString, CAMediaTimingFunction, CAValueFunction;
@protocol CAAnimationDelegate;

NS_ASSUME_NONNULL_BEGIN
/************************* 动画基类 ***************************/
CA_CLASS_AVAILABLE (10.5, 2.0, 9.0, 2.0)
@interface CAAnimation : NSObject
    <NSCoding, NSCopying, CAMediaTiming, CAAction>
{
@private
  void *_attr;
  uint32_t _flags;
}

/* 创建一个新的动画对象*/
+ (instancetype)animation;

/* Animations implement the same property model as defined by CALayer. */
+ (nullable id)defaultValueForKey:(NSString *)key;
- (BOOL)shouldArchiveValueForKey:(NSString *)key;

/*
/** 时间函数名**/
CA_EXTERN NSString * const kCAMediaTimingFunctionLinear
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);//(线性):匀速,给你一个相对静态的感觉
CA_EXTERN NSString * const kCAMediaTimingFunctionEaseIn
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);(渐进):动画缓慢进入,然后加速离开
CA_EXTERN NSString * const kCAMediaTimingFunctionEaseOut
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);(渐出):动画全速进入,然后减速的到达目的地
CA_EXTERN NSString * const kCAMediaTimingFunctionEaseInEaseOut
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);//(渐进渐出):动画缓慢的进入,中间加速,然后减速的到达目的地。
CA_EXTERN NSString * const kCAMediaTimingFunctionDefault
    CA_AVAILABLE_STARTING (10.6, 3.0, 9.0, 2.0);//默认,表示线性起搏
*/
@property(nullable, strong) CAMediaTimingFunction *timingFunction;
//动画代理。设置之后在相应时间会回调相应的代理方法
@property(nullable, strong) id <CAAnimationDelegate> delegate;
//默认为YES,代表动画执行完毕后就从图层上移除,图形会恢复到动画执行前的状态。如果想让图层保持显示动画执行后的状态,那就设置为NO,不过还要设置fillMode为kCAFillModeForwards .
@property(getter=isRemovedOnCompletion) BOOL removedOnCompletion;

@end
/* CAAnimation delegate 方法。 */
@protocol CAAnimationDelegate <NSObject>
@optional

//动画开始时的回调
- (void)animationDidStart:(CAAnimation *)anim;
//动画停止的回调,可以通过flag判断动画是否是完成还是暂停
- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag;

@end
/********************* 属性动画类  ***************************/
CA_CLASS_AVAILABLE (10.5, 2.0, 9.0, 2.0)
@interface CAPropertyAnimation : CAAnimation

/* 创建一个新的动画对象与其“keyPath”属性设置为“道路”。 */
+ (instancetype)animationWithKeyPath:(nullable NSString *)path;

/* 动画路径 */
@property(nullable, copy) NSString *keyPath;
/* 默认 NO */
@property(getter=isAdditive) BOOL additive;

@property(getter=isCumulative) BOOL cumulative;

@property(nullable, strong) CAValueFunction *valueFunction;

@end
/**************** 提供对单一帧动画的实现 ****************/
CA_CLASS_AVAILABLE (10.5, 2.0, 9.0, 2.0)
@interface CABasicAnimation : CAPropertyAnimation
/*
 fromValue:keyPath相应属性的初始值
 toValue  :keyPath相应属性的结束值(絶対値)
 byValue  :相对起始值的改变量
*/
@property(nullable, strong) id fromValue;
@property(nullable, strong) id toValue;
@property(nullable, strong) id byValue;

@end
/**************** 普通的帧动画,可以定义动画路线 ****************/
CA_CLASS_AVAILABLE (10.5, 2.0, 9.0, 2.0)
@interface CAKeyframeAnimation : CAPropertyAnimation

//里面的元素称为“关键帧”(keyframe)。动画对象会在指定的时间(duration)内,依次显示values数组中的每一个关键帧。
@property(nullable, copy) NSArray *values;
//可以设置一个CGPathRef / CGMutablePathRef,让层跟着路径移动。path只对CALayer的anchorPoint和position起作用。如果你设置了path,那么values将被忽略。
@property(nullable) CGPathRef path;
//可以为对应的关键帧指定对应的时间点,其取值范围为0到1.0,keyTimes中的每一个时间值都对应values中的每一帧.当keyTimes没有设置的时候,各个关键帧对时间平均分配 .
@property(nullable, copy) NSArray<NSNumber *> *keyTimes;

/*
kCAMediaTimingFunctionLinear                  //线性
kCAMediaTimingFunctionEaseIn                  //淡入
kCAMediaTimingFunctionEaseOut                 //淡出
kCAMediaTimingFunctionEaseInEaseOut           //淡入淡出
kCAMediaTimingFunctionDefault                 //默认
*/
//这个属性用以指定时间函数,类似于运动的加速度,这是一个数组,你有几个子路径就应该传入几个元素。
@property(nullable, copy) NSArray<CAMediaTimingFunction *> *timingFunctions;

/*
const kCAAnimationLinear       //线性,默认
const kCAAnimationDiscrete     //离散,无中间过程,但keyTimes设置的时间依旧生效,物体跳跃地出现在各个关键帧上
const kCAAnimationPaced        //平均,keyTimes跟timeFunctions失效
const kCAAnimationCubic        //平均,同上
const kCAAnimationCubicPaced   //平均,同上
*/
//该属性决定了物体在每个子路径下是跳着走还是匀速走。
@property(copy) NSString *calculationMode;

@property(nullable, copy) NSArray<NSNumber *> *tensionValues;
@property(nullable, copy) NSArray<NSNumber *> *continuityValues;
@property(nullable, copy) NSArray<NSNumber *> *biasValues;

/* `rotationMode' strings. */
CA_EXTERN NSString * const kCAAnimationRotateAuto
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);
CA_EXTERN NSString * const kCAAnimationRotateAutoReverse
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);
@property(nullable, copy) NSString *rotationMode;

@end
/**************** 提供弹簧效果 (iOS9才引入的动画类)****************/
CA_CLASS_AVAILABLE (10.11, 9.0, 9.0, 2.0)
@interface CASpringAnimation : CABasicAnimation

//质量,影响图层运动时的弹簧惯性,质量越大,弹簧拉伸和压缩的幅度越大。默认为:1
@property CGFloat mass;

//弹簧刚度系数(劲度系数/弹性系数),刚度系数越大,形变产生的力就越大,运动越快。必须大于0.默认值为100。
@property CGFloat stiffness;

//阻尼系数,阻止弹簧伸缩的系数,阻尼系数越大,停止越快。必须大于或等于0.默认值为10。
@property CGFloat damping;

/*弹簧上的物体的初始速度。 
默认为0,表示一个不动的对象。 
负值表示物体远离弹簧附接点,
正值表示物体朝向弹簧附接点移动。*/
@property CGFloat initialVelocity;

/*返回结算时间
弹簧动画到停止时的估算时间,根据当前的动画参数估算*/
@property(readonly) CFTimeInterval settlingDuration;

@end

/************************* 提供渐变效果 ***************************/
CA_CLASS_AVAILABLE (10.5, 2.0, 9.0, 2.0)
@interface CATransition : CAAnimation

/* 过渡效果类型:(私有 API)
cube                      //立方体翻滚效果
oglFlip                   //上下左右翻转效果
suckEffect                //收缩效果,如一块布被抽走(不支持过渡方向)
rippleEffect              //滴水效果(不支持过渡方向)
pageCurl                  //向上翻页效果
pageUnCurl                //向下翻页效果
cameraIrisHollowOpen      //相机镜 
*/
/*
 /* Common transition types. */
CA_EXTERN NSString * const kCATransitionFade
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);  //交叉淡化过渡(不支持过渡方向
CA_EXTERN NSString * const kCATransitionMoveIn
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);  //新视图移到旧视图上面
CA_EXTERN NSString * const kCATransitionPush
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);  //新视图把旧视图Push出去
CA_EXTERN NSString * const kCATransitionReveal
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);  //将旧视图移开,显示下面的新视图  
*/
//动画过渡类型
@property(copy) NSString *type;

/ * 过渡方向
/* Common transition subtypes. */
CA_EXTERN NSString * const kCATransitionFromRight
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);      //右边
CA_EXTERN NSString * const kCATransitionFromLeft
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);      //左边
CA_EXTERN NSString * const kCATransitionFromTop
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);      //上边
CA_EXTERN NSString * const kCATransitionFromBottom
    CA_AVAILABLE_STARTING (10.5, 2.0, 9.0, 2.0);      //下边
* /
//动画过渡方向
@property(nullable, copy) NSString *subtype;

//动画起点(在整体动画的百分比),值在[ 0,1 ]之间,默认0
@property float startProgress;
//动画终点(在整体动画的百分比),值在[ 0,1 ]之间,默认1
@property float endProgress;

//为动画添加一个可选的滤镜。
//如果指定,那么指定的filter必须同时支持x和y,否则该filter将不起作用。
//如果设置了filter,那么,为layer设置的type和subtype属性将被忽略。
//如果设置了filter,那么必须实现`inputImage', `inputTargetImage' and `inputTime' input keys, and the `outputImage' output key. Optionally it may support the `inputExtent' key,
@property(nullable, strong) id filter;

@end
/****************** 允许多个动画同时播放 ************************/
CA_CLASS_AVAILABLE (10.5, 2.0, 9.0, 2.0)
//CAAnimation的子类,可以保存一组动画对象,将CAAnimationGroup对象加入层后,组中所有动画对象可以同时并发运行
@interface CAAnimationGroup : CAAnimation

//用来存储一组动画对象
@property(nullable, copy) NSArray<CAAnimation *> *animations;

@end

NS_ASSUME_NONNULL_END
  • 苹果官方提供的 API 前面标识符的意思如下:
1. C     = Class       表示 类
2. M     = Method      表示 方法  
3. P     = Property    表示 属性
4. f     = 

使用例子

CAKeyframeAnimation
1、values
NSValue *value0 = [NSNumber numberWithFloat:1.0]; //第一帧
NSValue *value1 = [NSNumber numberWithFloat:1.1]; //第二帧
NSValue *value2 = [NSNumber numberWithFloat:1.0]; //第三帧

CAKeyframeAnimation *trAnimation = 
[CAKeyframeAnimation animationWithKeyPath:@"transform.scale"];
trAnimation.values = @[value0, value1, value2];
trAnimation.duration = 0.6;
trAnimation.timingFunction = 
[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
[View.layer addAnimation:trAnimation forKey:nil];

2、path
CAKeyframeAnimation *animation = 
[CAKeyframeAnimation animationWithKeyPath:@"position"];
animation.path = @"需要自己绘制路径(CGMutablePathRef / CGPathRef)";
animation.removedOnCompletion = NO;
animation.autoreverses = NO;
animation.duration = 1.0;
animation.repeatCount = 0;
animation.fillMode = kCAFillModeForwards;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
[view.layer addAnimation:animation forKey:@"animateLayer"];
CAAnimationGroup
CAAnimationGroup *animation = [CAAnimationGroup animation];
animation.animations = @[trAnimation,theAnimation];
animation.duration = 1.0;
animation.repeatCount = 0;
animation.removedOnCompletion = NO;
animation.fillMode = kCAFillModeForwards;
[view.layer addAnimation:animation forKey:@"animateLayer"];
CABasicAnimation
CABasicAnimation *theAnimation = 
[CABasicAnimation animationWithKeyPath:@"transform.translation.y"];
theAnimation.duration = 1;
theAnimation.repeatCount = 0;
theAnimation.removedOnCompletion = FALSE;
theAnimation.fillMode = kCAFillModeForwards;
theAnimation.autoreverses = YES;
theAnimation.fromValue = [NSNumber numberWithFloat:0];
theAnimation.toValue = [NSNumber numberWithFloat:-64];
[view.layer addAnimation:theAnimation forKey:@"animateLayer"];
UIView *bgView = [[UIView alloc] init];
bgView.bounds = CGRectMake(0, 0, 100,100);
bgView.center = self.view.center;
[self.view addSubview:bgView];
    
CAShapeLayer *shapeLayer = [CAShapeLayer layer];
shapeLayer.frame = CGRectMake(0, 0, 100, 100);
UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:bgView.bounds];
shapeLayer.path = path.CGPath;
shapeLayer.fillColor = [UIColor clearColor].CGColor;
shapeLayer.lineWidth = 2.0f;
shapeLayer.strokeColor = [UIColor redColor].CGColor;
[bgView.layer addSublayer:shapeLayer];
//@property CGFloat strokeStart;
//@property CGFloat strokeEnd;
CABasicAnimation *pathAnima = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];
pathAnima.duration = 3.0f;
pathAnima.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
pathAnima.fromValue = [NSNumber numberWithFloat:0.0f];
pathAnima.toValue = [NSNumber numberWithFloat:1.0f];
pathAnima.fillMode = kCAFillModeForwards;
pathAnima.removedOnCompletion = NO;
[shapeLayer addAnimation:pathAnima forKey:@"strokeEndAnimation"];

如果animationWithKeyPath:方法创建对象,参数如下:

Structure Field Description
rotation.x The rotation, in radians, in the x axis.
rotation.y The rotation, in radians, in the y axis.
rotation.x The rotation, in radians, in the z axis.
rotation The rotation, in radians, in the z axis. This is identical to setting the rotation.z field.
scale.x Scale factor for the x axis.
scale.y Scale factor for the y axis.
scale.x Scale factor for the z axis.
scale Average of all three scale factors.
translation.x Translate in the x axis.
translation.y Translate in the y axis.
translation.x Translate in the z axis.
translation Translate in the x and y axis. Value is an NSSize or CGSize.
CASpringAnimation

。。。

CAPropertyAnimation

。。。

CATransition

CATransition *trAnimation = [CATransition animation];    
trAnimation.duration = 1.0;   
trAnimation.type = kCATransitionPush;    
trAnimation.subtype = kCATransitionFromTop;   
trAnimation.startProgress = 0.0;   
trAnimation.endProgress = 1.0;   
trAnimation.timingFunction = 
[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];   
[View.layer addAnimation:trAnimation forKey:@"transition"];   

trAnimation.type 苹果公开的类型仅仅有四种类型分别是:

淡化、推挤、揭开、覆盖
NSString * const kCATransitionFade;
NSString * const kCATransitionMoveIn;
NSString * const kCATransitionPush;
NSString * const kCATransitionReveal;

trAnimation.subtype 苹果提供的类型有如下四种:

从右侧、从左侧、从顶部、从底部
NSString * const kCATransitionFromRight;
NSString * const kCATransitionFromLeft;
NSString * const kCATransitionFromTop;
NSString * const kCATransitionFromBottom;

对于trAnimation.type类型苹果还提供了一定的私有API分别如下:

立方体、吸收、翻转、波纹、翻页、反翻页、镜头开、镜头关
animation.type = @"cube"  
animation.type = @"suckEffect";   
animation.type = @"oglFlip"; 
animation.type = @"rippleEffect";  
animation.type = @"pageCurl";  
animation.type = @"pageUnCurl"  
animation.type = @"cameraIrisHollowOpen"; 
animation.type = @"cameraIrisHollowClose";
  • CATransition 的 startProgress 和 endProgress属性介绍:
    可以控制动画进行的过程,可以让动画停留在某个动画点上,值在0.0到1.0之间。endProgress要大于等于startProgress。比如上面的立方体转到,可以设置endProgress= 0.5,让动画停留在转动一般的位置。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,193评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,306评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,130评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,110评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,118评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,085评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,007评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,844评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,283评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,508评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,667评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,395评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,985评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,630评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,797评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,653评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,553评论 2 352

推荐阅读更多精彩内容

  • 前言 本文只要描述了iOS中的Core Animation(核心动画:隐式动画、显示动画)、贝塞尔曲线、UIVie...
    GitHubPorter阅读 3,621评论 7 11
  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥ios动画全貌。在这里你可以看...
    每天刷两次牙阅读 8,485评论 6 30
  • 显式动画 显式动画,它能够对一些属性做指定的自定义动画,或者创建非线性动画,比如沿着任意一条曲线移动。 属性动画 ...
    清风沐沐阅读 1,930评论 1 5
  • 如果想让事情变得顺利,只有靠自己 -- 夏尔·纪尧姆 上一章介绍了隐式动画的概念。隐式动画是在iOS平台创建动态用...
    雪_晟阅读 569评论 0 1
  • 【iOS开发】30多个iOS常用动画,带详细注释 (2014-04-20 14:55:54)转载▼标签: ios开...
    Fun箱Dao柜阅读 1,541评论 0 50