CABasicAnimation 属性 个列表

CABasicAnimation Property Listings

我正在学习 Core Animation 教程,解说员创建了一个 CABasicAnimation 对象并开始使用该对象的所有这些不同属性,例如持续时间、repeatCount 和 autoReverse。我遇到的问题是,当我研究 Apple 的 CABasicAnimation documentation 时,它没有显示这些属性。我认为叙述者发现这些属性并加以利用真的很酷,我想知道如何提高我的研究技能,或者我在哪里没有查看 Apple 的文档来找到叙述者使用的这些属性?

提前致谢

看看Core Animation编程指南:

https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/CoreAnimation_guide/Introduction/Introduction.html

特别是关于动画层内容的部分。

希望对您有所帮助。

我不确定您指的是什么属性,但是如果您遵循 documentation for CABasicAnimation (that you linked to) you can see that it inherits from CAPropertyAnimation which in turn inherits from CAAnimation,它们都定义并记录了一些额外的属性。

此外,您可以看到它符合CAMediaTiming,涵盖了所有动画的时间相关属性。

这些应该共同为您可以配置和依赖的所有 public 属性提供文档。