微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

自定义CALayer在CAAnimation过程中自定义property为nil问题

问题:
自定义CALayer在CAAnimation过程中自定义property为nil。

原因:
CA框架维护着三套Layer tree,这个在CAAnimation Guide中有说,可惜我忘了

layer tree中存储着最终的结果值 last value,presentation tree只有在CAAnimation动画 on-flight就是进行过程中才可访问,其中值是当前变化中的值current -value,而render tree是CA框架私有维护的,任何时候不可访问。

所以
When you add an animation to a CALayer,it creates a so-called presentation copy of that layer using initWithLayer:. The presentation layer contains actual animated state for each animation frame,while the original layer has the final state. The problem with animating your own properties is that CALayer does not copy them all in initWithLayer:. If that’s your case,your should override initWithLayer: and set up all the properties you need for animation。

当CALayer加入一个动画对象时,其实是复制了一份CALayer到presentation tree中去做动画效果在这个过程中如果你没有override initWithLayer函数的话,这些自定义元素在复制过程中就没有被初始化,就成为了nil。 所以override initWithLayer中复制这些property给新的拷贝实例即可。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐