码迷,mamicode.com
首页 > 移动开发 > 详细

iOS动画的要素

时间:2017-04-19 10:22:24      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:mode   get   core   art   running   ons   instead   cep   private   

1)iOS动画的模型:三层树模型;

https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/CoreAnimation_guide/CoreAnimationBasics/CoreAnimationBasics.html#//apple_ref/doc/uid/TP40004514-CH2-SW12

Layer Trees Reflect Different Aspects of the Animation State

An app using Core Animation has three sets of layer objects. Each set of layer objects has a different role in making the content of your app appear onscreen:

  • Objects in the model layer tree (or simply “layer tree”) are the ones your app interacts with the most. The objects in this tree are the model objects that store the target values for any animations. Whenever you change the property of a layer, you use one of these objects. 

  • Objects in the presentation tree contain the in-flight values for any running animations. Whereas the layer tree objects contain the target values for an animation, the objects in the presentation tree reflect the current values as they appear onscreen. You should never modify the objects in this tree. Instead, you use these objects to read current animation values, perhaps to create a new animation starting at those values. 

  • Objects in the render tree perform the actual animations and are private to Core Animation.

2)动画帧图片组;

3)呈现动画帧的时间控制;

4)动画的组合;

caanimationgroup:同一个layer;

CATransaction:不同layer;

5)自定义动画与帧自绘;

iOS动画的要素

标签:mode   get   core   art   running   ons   instead   cep   private   

原文地址:http://www.cnblogs.com/feng9exe/p/6731299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!