I'm following a Core Animation tutorial and the narrator created a CABasicAnimation object and began using all these different properties of the object such as duration, repeatCount, and autoReverse. The problem I'm experiencing is that when I research Apple's CABasicAnimation documentation, it doesn't show these properties. I think its really cool that the narrator found these properties to make use of them and I'd like to know how do I improve my research skills or where am I not looking in Apple's documentation to find these properties that the narrator uses?
Thank you in advance
I'm not sure what properties you are referring to, but if you follow the documentation for
CABasicAnimation
(that you linked to) you can see that it inherits fromCAPropertyAnimation
which in turn inherits fromCAAnimation
, both of which define and document some additional properties.Additionally, you can see that it conforms to
CAMediaTiming
, which cover the timing related properties of all animations.Together, these should provide the documentation for all the public properties that you can configure and rely upon.