init(duration:curve:animations:)
Initializes the animator with a built-in UIKit timing curve.
Declaration
convenience init(duration: TimeInterval, curve: UIView.AnimationCurve, animations: (() -> Void)? = nil)Parameters
- duration:
The duration of the animation, in seconds.
- curve:
The UIKit timing curve to apply to the animation.
- animations:
The block containing the animations. This block has no return value and takes no parameters. Use this block to modify any animatable view properties. When you start the animations, those properties are animated from their current values to the new values using the specified animation parameters.
Return Value
An initialized animator object or nil if the object could not be created.
Discussion
Use this method to create an animator object that uses the existing UIKit timing curves to control the animation behavior. Standard UIKit timing curves include UIView.AnimationCurve.linear and UIView.AnimationCurve.easeInOut among others.
The animator object returned by this method begins in the UIViewAnimatingState.inactive state. You must explicitly start the animations by calling the startAnimation() method.