1.GIF动画 2.菊花动画 3.UIView动画 3.1基础动画 3.2UIView的block动画 3.3UIView的UIViewSpring动画 4.CoreAnimation动画(CALayer动画) Layer的常用属性 ...
分类:
其他好文 时间:
2016-05-26 22:06:13
阅读次数:
429
本文参考:http://www.cnblogs.com/kenshincui/p/3972100.html#autoid-3-0-0总结的:
Core Animation
*
iOS 核心动画的实现
CoreAnimation (包含在Quartz Core 框架中), 在iOS核心动画分为几类(基础动画, 关键帧动画, 动画组, 转场动画, )
...
分类:
移动开发 时间:
2016-05-26 11:34:51
阅读次数:
178
序列帧动画 曾经项目里的一段源码: UIView 动画 UIViewAnimation UIViewAnimationWithBlocks CoreAnimation CATransition 继承关系:CATransition -> CAAnimation CAPropertyAnimation ...
分类:
移动开发 时间:
2016-05-11 13:34:42
阅读次数:
298
@property (weak, nonatomic) IBOutlet UIView *redView;@property (weak, nonatomic) IBOutlet UILabel *label; 代码收集来自: http://www.cnblogs.com/zzuliliu/p/54 ...
分类:
移动开发 时间:
2016-05-08 01:01:30
阅读次数:
286
一、position和anchorPoint position:用来设置CALayer在父层中的位置,以父层的左上角为原点(0, 0) anchorPoint(锚点): 称为“定位点”、“锚点” 决定着CALayer身上的哪个点会在position属性所指的位置 以自己的左上角为原点(0, 0) 它 ...
分类:
移动开发 时间:
2016-04-29 08:08:24
阅读次数:
231
一:UIKit动画在介绍CoreAnimation动画前先简单介绍一下UIKit动画,大部分简单的动画都可以使用UIKit动画实现,如果想实现更复杂的效果,则需要使用Core Animation了,Core Animation中包含了可以实现更为复杂的基础动画和关键帧动画等等。UIKit动画有两种写法,它不仅可以针对视图还可以针对其它控件。1:第一种写法是利用属性,结合beginAnimations...
分类:
移动开发 时间:
2016-04-22 18:55:59
阅读次数:
229
核心动画——CAAnimation 需要的框架:CoreAnimation -> 基础框架 CAAnimation 分为三大类: 处理动画的类 (基类 不能使用) ①CAPropertyAnimation 属性动画 -> 通过改变属性值产生动画效果 <1>CABasicAnimation 基础动画 ...
分类:
其他好文 时间:
2016-04-15 18:17:14
阅读次数:
261
CoreAnimation 是添加在Layer上的。 拷贝来的图片 ...
分类:
其他好文 时间:
2016-04-12 20:48:55
阅读次数:
116
核心动画(Core Animation) : ?CoreAnimation是一组非常强大的动画处理API,使用它能做出非常炫丽的动画效果,而且往往是事半功倍,使用它需要先添加QuartzCore.framework和引入对应的框架<QuartzCore/QuartzCore.h> ?开发步骤: ①初 ...
分类:
移动开发 时间:
2016-04-11 20:54:30
阅读次数:
164