AppleCAPropertyAnimation - UBogun/Xojo-iosLib GitHub Wiki
Inherits from AppleCAAnimation
Status: incomplete, value function missing
Memoryleak test: Failed!! Memory gets released but not fully. Anyway, you will usually create a subclass! Just creating animations without using them is a sure way to crash the system.
CAPropertyAnimation is another (sub)class of CoreAnimations you will not use by itself. Insted, it builds the base for animating properties of a AppleCALayer. Therefore there is no real useful constructor here but for its subclasses.
##Constructor Constructor (keyPath as CFStringRef): Creates a new PropertyAnimation for the keyPath (which you can read from the constructors of the subclasses).
Properties
Additive As Boolean: If True, the property values you supply the animation with will be treated as delta towards the current property values.
Cumulative As Boolean: If True, the value of the property is the value at the end of the previous repeat cycle, plus the value of the current repeat cycle. If False, the value of the property is simply the value calculated for the current repeat cycle. Default is False.
KeyPath As CFStringRef: The property the animation is attached to.