Core Animation - 完成块

简介: Core Animation - 完成块

什么是完成块呢?这类似于我们使用block完成事务后的回调,在完成既定的事物后出发的某种操作,拿上一篇隐式动画中的改变颜色来说可以为他设定一个完成块,在颜色变换之后将色块旋转90度:

 //begin a new transaction
      [CATransaction begin];
      //set the animation duration to 1 second
      [CATransaction setAnimationDuration:1.0];
      //add the spin animation on completion
      [CATransaction setCompletionBlock:^{
          //rotate the layer 90 degrees
          CGAffineTransform transform = self.colorLayer.affineTransform;
          transform = CGAffineTransformRotate(transform, M_PI_2);
          self.colorLayer.affineTransform = transform;
}];
//randomize the layer background color
CGFloat red = arc4random() / (CGFloat)INT_MAX;
CGFloat green = arc4random() / (CGFloat)INT_MAX;
CGFloat blue = arc4random() / (CGFloat)INT_MAX;
self.colorLayer.backgroundColor = [UIColor colorWithRed:red green:green blue:blue alpha:1.0].CGCo //commit the transaction
[CATransaction commit];

根据完成块概念,即完成颜色改变后触发,所以旋转动画出现在颜色入栈出栈后,同时由于用默认的事物做变换,未设置旋转动画的时间,所以默认为0.25s。


查看地址:https://github.com/codeliu6572/CATransaction

目录
相关文章
|
前端开发 数据可视化 容器
CSS块格式化上下文(Block Formatting Context,BFC)
CSS块格式化上下文(Block Formatting Context,BFC)
114 0
Core Animation - 摇动+循环动态画圆
Core Animation - 摇动+循环动态画圆
86 0
Core Animation - 摇动+循环动态画圆
Core Animation - 变换<四>
Core Animation - 变换<四>
89 0
Core Animation - 变换<四>
Core Animation - 变换<一>
Core Animation - 变换<一>
90 0
Core Animation - 变换<一>
Core Animation - 变换<三>
Core Animation - 变换<三>
52 0
Core Animation - 变换<三>
Core Animation - 图层行为
Core Animation - 图层行为
83 0
Core Animation - 图层行为
|
iOS开发
Core Animation - 图层几何学<一>
Core Animation - 图层几何学<一>
98 0
Core Animation - 图层几何学<一>
|
前端开发
【CSS】有意思的BFC:Block Formatting Context(块格式化上下文)!🤡
前言 大家好,我是HoMeTown,今天想聊一聊CSS中的BFC,很多朋友应该都听过这个名词,搞懂BFC可以让我们理解CSS中一些很诡异的地方,话不多说,直奔主题!
59 0
Core Animation -CGContextRef的运用,还有详细解释
Core Animation -CGContextRef的运用,还有详细解释
93 0
Core Animation - CATransformLayer的运用
Core Animation - CATransformLayer的运用
68 0