标签:
4、隐式动画:没有告诉它执行动画,都执行动画
5、非主layer才有隐式动画,手动创建的layer才有隐式动画。
6、并不是所有的属性都是有隐式动画的,属性中标有animatable的是有隐式动画的,可以通过查官方文档看那些属性是可动画的,Window —>Documentation and API Reference—>搜索CALayer animatable properties,就可以看到表格中可以动画属性
7、如何关闭默认自带的隐式动画
- (void)viewDidLoad { [super viewDidLoad]; CALayer *layer = [CALayer layer]; layer.bounds = CGRectMake(0, 0, 100, 100); layer.backgroundColor = [UIColor redColor].CGColor; layer.position = CGPointZero; layer.anchorPoint = CGPointZero;//锚点 [self.view.layer addSublayer:layer]; self.layer = layer; } -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { // [CATransaction begin];//开启事务 // [CATransaction setDisableActions:YES]; self.layer.position = CGPointMake(100, 100); // [CATransaction commit];//提交事务,关闭默认的隐式动画 }
8、可以通过动画事务(CATransaction)关闭默认的隐式动画效果
[CATransaction begin];//开启事务 [CATransaction setDisableActions:YES];//disable不可用 self.layer.position = CGPointMake(100, 100);//隐式动画执行的语句 [CATransaction commit];//提交事务
标签:
原文地址:http://www.cnblogs.com/yipingios/p/4499138.html