一.组动画的创建首先创建一个组动画,也就是大小变化和透明度变化的动画。// 大小变化
let scaleAnimation = CAKeyframeAnimation(keyPath: "transform.scale") scaleAnimation.keyTimes = [0, 0.5, 1]
scaleAnimation.values = [1,...
分类:
编程语言 时间:
2015-07-30 17:05:52
阅读次数:
279
CABasicAnimation*basic=[CABasicAnimationanimationWithKeyPath:@"bounds"];basic.duration=5;basic.fromValue=[NSValuevalueWithCGRect:CGRectMake(0,0,200,200)];basic.toValue=[NSValuevalueWithCGRect:CGRectMake(0,0,300,300)];CAKeyframeAnimation*keyFrame=[CAKeyframe..
分类:
其他好文 时间:
2014-09-18 03:17:13
阅读次数:
205