iOS动画之CABasicAnimation

我们首先来看看Core Animation类的继承关系图

687474703a2f2f696d672e6d792e6373646e2e6e65742f75706c6f6164732f3230313530372f32332f313433373631373536325f333139302e706e67.png

下面通过苹果官方的API来介绍CABasicAnimation

Class
CABasicAnimation
An object that provides basic, single-keyframe animation capabilities for a layer property.
//为图层属性提供基本的单关键帧动画功能的对象。介绍了这个类的作用
//关键词:basic, single-keyframe animation(单关键帧,你可以理解成CABasicAnimation是CAKeyframeAnimation的特殊化) 

Overview(概述)
You create an instance of CABasicAnimation using the inherited animationWithKeyPath: method, specifying the key path of the property to be animated in the render tree.
//你可以使用继承的animationWithKeyPath:方法创建CABasicAnimation的实例,指定要在渲染树中进行动画处理的属性的键路径。

For example, you can animate a layer's scalar (i.e. containing a single value) properties such as its opacity. Listing 1 fades in a layer by animating its opacity from 0 to 1.
//如列表1中,你可以为涂层属性(不透明度)设置动画,使其不透明度从0到1淡化

Listing 1 
Creating an animation to animate opacity
let animation = CABasicAnimation(keyPath: "opacity") 
animation.fromValue = 0 
animation.toValue = 1
Non-scalar properties, such as backgroundColor, can also be animated. Core Animation will interpolate between the fromValue color and the toValue color. The animation created in Listing 2 fades a layer's background color from red to blue.
//非标量属性,如backgroundColor,也可以是动画。 核心动画将在fromValue颜色和toValue颜色之间进行插值。 清单2中创建的动画会将图层的背景颜色从红色渐变为蓝色

Listing 2 
Creating an animation to animate background color.
let animation = CABasicAnimation(keyPath: "backgroundColor")
animation.fromValue = NSColor.red.cgColor
animation.toValue = NSColor.blue.cgColor
If you want to animate the individual(个人) components(组件、元件) of a non-scalar property with different values, you pass the values to toValue and fromValue as arrays. The animation created in Listing 3 moves a layer from (0, 0) to (100, 100).
//如果要为具有不同值的非标量属性的各个组件设置动画,请将值传递到toValue和fromValue作为数组。 清单3中创建的动画将一个图层从(0,0)移动到(100,100)。

Listing 3 
Creating an animation to animate position
let animation = CABasicAnimation(keyPath: "position")
animation.fromValue = [0, 0]
animation.toValue = [100, 100]
The keyPath can access the individual components of a property. For example, the Listing 4 stretches a layer by animating its transform object's x from 1 to 2.
//keyPath可以访问属性的各个组件。 例如,清单4通过将其变换对象的x从1动画化为2来展开图层。

Listing 4 
Creating an animation to animate scale
let animation = CABasicAnimation(keyPath: "transform.scale.x")
animation.fromValue = 1
animation.toValue = 2

Setting Interpolation Values(设置插值)
The fromValue, byValue and toValue properties define the values being interpolated between. All are optional, and no more than two should be non-nil. The object type should match the type of the property being animated.
//fromValue,byValue和toValue属性定义在之间插入的值。 所有都是可选的,不超过两个应该是非零。 对象类型应与要动画的属性的类型匹配
//注意:不超过两个是非零,byValue是一个相对值,例如,如果指定了`fromValue`等于2,`toValue`等于4,`byValue`等于3,那么Core Animation就不知道结果到底是4(`toValue`)还是5(`fromValue + byValue`)了
The interpolation values are used as follows:
//内插值使用如下
Both fromValue and toValue are non-nil. Interpolates between fromValue and toValue.
//fromValue和toValue都是非零。 插值(也就是动画执行)从fromValue到toValue
fromValue and byValue are non-nil. Interpolates between fromValue and (fromValue + byValue).
//fromValue和byValue是非零。 插值(也就是动画执行)从fromValue到fromValue + byValue。
byValue and toValue are non-nil. Interpolates between (toValue - byValue) and toValue.
//byValue和toValue是非零。 插值(也就是动画执行)从toValue - byValue到toValue
fromValue is non-nil. Interpolates between fromValue and the current presentation value of the property.
//fromValue是非零,fromValue->当前
toValue is non-nil. Interpolates between the current value of keyPath in the target layer’s presentation layer and toValue.
//toValue是非零,当前->toValue
byValue is non-nil. Interpolates between the current value of keyPath in the target layer’s presentation layer and that value plus byValue.
//byValue是非零,当前值->当前值 + byValue
All properties are nil. Interpolates between the previous value of keyPath in the target layer’s presentation layer and the current value of keyPath in the target layer’s presentation layer.
//super与当前的对比,没意义
Symbols

Interpolation values
fromValue
Defines the value the receiver uses to start interpolation.
//定义接收器用于开始插值的值。
toValue
Defines the value the receiver uses to end interpolation.
//定义接收器用于结束插值的值
byValue
Defines the value the receiver uses to perform relative interpolation.
//定义接收器用于执行相对插值的值

示例

从苹果官方API我们可以了解到CABasicAnimation(基础动画)算是CAKeyframeAnimation(关键帧动画)的特殊化,CABaseAnimation只能从一个数值(fromValue)变换成另一个数值(toValue),而CAKeyframeAnimation则会使用一个NSArray保存一组关键帧.

使用CABasicAnimation可操控的几种属性

  • opacity (透明度)
  • backgroundColor (背景色)
  • position (位置)
  • transform.scale.x(多种)
1 opacity

 CABasicAnimation *anima = [CABasicAnimation animationWithKeyPath:@"opacity"];
 anima.fromValue = [NSNumber numberWithFloat:1.0f];
 anima.toValue = [NSNumber numberWithFloat:0.2f];
 anima.duration = 1.0f;
 [_demoView.layer addAnimation:anima forKey:@"opacityAniamtion"];

2 backgroundColor

CABasicAnimation *anima = [CABasicAnimation animationWithKeyPath:@"backgroundColor"];
anima.toValue =(id) [UIColor greenColor].CGColor;
anima.duration = 1.0f;
[_demoView.layer addAnimation:anima forKey:@"backgroundAnimation"];

3 position

CABasicAnimation *anima = [CABasicAnimation animationWithKeyPath:@"position"];
anima.fromValue = [NSValue valueWithCGPoint:CGPointMake(0, SCREEN_HEIGHT/2-75)];
anima.toValue = [NSValue valueWithCGPoint:CGPointMake(SCREEN_WIDTH, SCREEN_HEIGHT/2-75)];
anima.duration = 3.0f;
//如果fillMode=kCAFillModeForwards和removedOnComletion=NO,那么在动画执行完毕后,图层会保持显示动画执行后的状态。但在实质上,图层的属性值还是动画执行前的初始值,并没有真正被改变。
//anima.fillMode = kCAFillModeForwards;
//anima.removedOnCompletion = NO;
anima.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
[_demoView.layer addAnimation:anima forKey:@"positionAnimation"];

4 transform

//缩放
CABasicAnimation *anima = [CABasicAnimation animationWithKeyPath:@"transform.scale"];//同上
anima.toValue = [NSNumber numberWithFloat:2.0f];
anima.duration = 3.0f;
[_demoView.layer addAnimation:anima forKey:@"scaleAnimation"];


//旋转
CABasicAnimation *anima = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];//绕着z轴为矢量,进行旋转(@"transform.rotation.z"==@@"transform.rotation")
anima.toValue = [NSNumber numberWithFloat:M_PI];
anima.duration = 1.0f;
[_demoView.layer addAnimation:anima forKey:@"rotateAnimation"];

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,743评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,296评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,285评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,485评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,581评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,821评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,960评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,719评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,186评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,516评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,650评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,329评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,936评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,757评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,991评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,370评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,527评论 2 349

推荐阅读更多精彩内容

  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥ios动画全貌。在这里你可以看...
    每天刷两次牙阅读 8,471评论 6 30
  • 一、UIKit动画 第一种写法是利用属性,结合beginAnimations、commitAnimations 第...
    Gary_Tseng阅读 962评论 1 3
  • 显式动画 显式动画,它能够对一些属性做指定的自定义动画,或者创建非线性动画,比如沿着任意一条曲线移动。 属性动画 ...
    清风沐沐阅读 1,926评论 1 5
  • Core Animation Core Animation,中文翻译为核心动画,它是一组非常强大的动画处理API,...
    45b645c5912e阅读 3,016评论 0 21
  • 在iOS中随处都可以看到绚丽的动画效果,实现这些动画的过程并不复杂,今天将带大家一窥iOS动画全貌。在这里你可以看...
    F麦子阅读 5,104评论 5 13