博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[iOS Animation]-CALayer 显示动画 动画组
阅读量:6963 次
发布时间:2019-06-27

本文共 4485 字,大约阅读时间需要 14 分钟。

hot3.png

动画组

CABasicAnimation和CAKeyframeAnimation仅仅作用于单独的属性,而CAAnimationGroup可以把这些动画组合在一起。CAAnimationGroup是另一个继承于CAAnimation的子类,它添加了一个animations数组的属性,用来组合别的动画。我们把清单8.6那种关键帧动画和调整图层背景色的基础动画组合起来(清单8.10),结果如图8.3所示。

清单8.10 组合关键帧动画和基础动画

复制代码
- (void)viewDidLoad{    [super viewDidLoad]; //create a path UIBezierPath *bezierPath = [[UIBezierPath alloc] init];    [bezierPath moveToPoint:CGPointMake(0, 150)];    [bezierPath addCurveToPoint:CGPointMake(300, 150) controlPoint1:CGPointMake(75, 0) controlPoint2:CGPointMake(225, 300)]; //draw the path using a CAShapeLayer CAShapeLayer *pathLayer = [CAShapeLayer layer];    pathLayer.path = bezierPath.CGPath;    pathLayer.fillColor = [UIColor clearColor].CGColor;    pathLayer.strokeColor = [UIColor redColor].CGColor;    pathLayer.lineWidth = 3.0f;    [self.containerView.layer addSublayer:pathLayer]; //add a colored layer CALayer *colorLayer = [CALayer layer];    colorLayer.frame = CGRectMake(0, 0, 64, 64);    colorLayer.position = CGPointMake(0, 150);    colorLayer.backgroundColor = [UIColor greenColor].CGColor;    [self.containerView.layer addSublayer:colorLayer]; //create the position animation CAKeyframeAnimation *animation1 = [CAKeyframeAnimation animation];    animation1.keyPath = @"position";    animation1.path = bezierPath.CGPath;    animation1.rotationMode = kCAAnimationRotateAuto; //create the color animation CABasicAnimation *animation2 = [CABasicAnimation animation];    animation2.keyPath = @"backgroundColor";    animation2.toValue = (__bridge id)[UIColor redColor].CGColor; //create group animation CAAnimationGroup *groupAnimation = [CAAnimationGroup animation];    groupAnimation.animations = @[animation1, animation2];     groupAnimation.duration = 4.0; //add the animation to the color layer  [colorLayer addAnimation:groupAnimation forKey:nil];}
复制代码

 

图8.3 关键帧路径和基础动画的组合

过渡

有时候对于iOS应用程序来说,希望能通过属性动画来对比较难做动画的布局进行一些改变。比如交换一段文本和图片,或者用一段网格视图来替换,等等。属性动画只对图层的可动画属性起作用,所以如果要改变一个不能动画的属性(比如图片),或者从层级关系中添加或者移除图层,属性动画将不起作用。

于是就有了过渡的概念。过渡并不像属性动画那样平滑地在两个值之间做动画,而是影响到整个图层的变化。过渡动画首先展示之前的图层外观,然后通过一个交换过渡到新的外观。

为了创建一个过渡动画,我们将使用CATransition,同样是另一个CAAnimation的子类,和别的子类不同,CATransition有一个type和subtype来标识变换效果。type属性是一个NSString类型,可以被设置成如下类型:

kCATransitionFade kCATransitionMoveIn kCATransitionPush kCATransitionReveal

 

到目前为止你只能使用上述四种类型,但你可以通过一些别的方法来自定义过渡效果,后续会详细介绍。

默认的过渡类型是kCATransitionFade,当你在改变图层属性之后,就创建了一个平滑的淡入淡出效果。

我们在第七章的例子中就已经用到过kCATransitionPush,它创建了一个新的图层,从边缘的一侧滑动进来,把旧图层从另一侧推出去的效果。

kCATransitionMoveIn和kCATransitionReveal与kCATransitionPush类似,都实现了一个定向滑动的动画,但是有一些细微的不同,kCATransitionMoveIn从顶部滑动进入,但不像推送动画那样把老土层推走,然而kCATransitionReveal把原始的图层滑动出去来显示新的外观,而不是把新的图层滑动进入。

后面三种过渡类型都有一个默认的动画方向,它们都从左侧滑入,但是你可以通过subtype来控制它们的方向,提供了如下四种类型:

kCATransitionFromRight kCATransitionFromLeft kCATransitionFromTop kCATransitionFromBottom

 

一个简单的用CATransition来对非动画属性做动画的例子如清单8.11所示,这里我们对UIImage的image属性做修改,但是隐式动画或者CAPropertyAnimation都不能对它做动画,因为Core Animation不知道如何在插图图片。通过对图层应用一个淡入淡出的过渡,我们可以忽略它的内容来做平滑动画(图8.4),我们来尝试修改过渡的type常量来观察其它效果。

清单8.11 使用CATransition来对UIImageView做动画

复制代码
@interface ViewController ()@property (nonatomic, weak) IBOutlet UIImageView *imageView;@property (nonatomic, copy) NSArray *images; @end @implementation ViewController - (void)viewDidLoad{    [super viewDidLoad]; //set up images self.images = @[[UIImage imageNamed:@"Anchor.png"],                    [UIImage imageNamed:@"Cone.png"],                    [UIImage imageNamed:@"Igloo.png"],                    [UIImage imageNamed:@"Spaceship.png"]];} - (IBAction)switchImage{ //set up crossfade transition CATransition *transition = [CATransition animation];    transition.type = kCATransitionFade; //apply transition to imageview backing layer  [self.imageView.layer addAnimation:transition forKey:nil]; //cycle to next image UIImage *currentImage = self.imageView.image;    NSUInteger index = [self.images indexOfObject:currentImage];    index = (index + 1) % [self.images count];    self.imageView.image = self.images[index];} @end
复制代码

 

你可以从代码中看出,过渡动画和之前的属性动画或者动画组添加到图层上的方式一致,都是通过 -addAnimation:forKey: 方法。但是和属性动画不同的是,对指定的图层一次只能使用一次CATransition,因此,无论你对动画的键设置什么值,过渡动画都会对它的键设置成“transition”,也就是常量kCATransition。

图8.4 使用CATransition对图像平滑淡入淡出

隐式过渡

CATransision可以对图层任何变化平滑过渡的事实使得它成为那些不好做动画的属性图层行为的理想候选。苹果当然意识到了这点,并且当设置了CALayer的content属性的时候,CATransition的确是默认的行为。但是对于视图关联的图层,或者是其他隐式动画的行为,这个特性依然是被禁用的,但是对于你自己创建的图层,这意味着对图层contents图片做的改动都会自动附上淡入淡出的动画。

我们在第七章使用CATransition作为一个图层行为来改变图层的背景色,当然backgroundColor属性可以通过正常的CAPropertyAnimation来实现,但这不是说不可以用CATransition来实行。

转载于:https://my.oschina.net/u/2438875/blog/509572

你可能感兴趣的文章
正则表达式
查看>>
现行技术体系的问题总结
查看>>
fibonacci 数列及其应用
查看>>
Win7 SP1语言包微软官方下载地址及使用方法 2
查看>>
C++ Error: no appropriate default constructor available
查看>>
Ubuntu Linux系统下apt-get命令详解
查看>>
javaWeb学习总结(4)- HttpServletResponse
查看>>
轻量级UML工具-UMLet
查看>>
【读书笔记《Android游戏编程之从零开始》】17.游戏开发基础(游戏适屏的简述和作用、让游戏主角动起来)...
查看>>
.NET 中关于 TypeCode 和枚举类型的问题
查看>>
cidaemon.exe进程cpu占用率高及关闭cidaemon.exe进程方法
查看>>
CheckBoxPreference组件
查看>>
C语言指针的初始化和赋值
查看>>
opencv第二课 进行缩放图片~
查看>>
sql server 导出数据到 Azure Hbase / Hive 详细步骤
查看>>
Jconsole远程监控tomcat 的JVM内存(linux、windows)
查看>>
Core Animation简介
查看>>
hdu 2251 Dungeon Master bfs
查看>>
Material Design系列第五篇——Working with Drawables
查看>>
SQL Server 2012 复制(发布订阅的研究)
查看>>