Contents

setAnimationCurve(_:)

Sets the curve to use when animating property changes within an animation block.

Declaration

class func setAnimationCurve(_ curve: UIView.AnimationCurve)

Discussion

If you specify your animations using begin/commit set of methods, you use this method to specify the type of curve you want to use for the animation. This method does nothing if called from outside of an animation block. It must be called between calls to the beginAnimations(_:context:) and commitAnimations() methods. And you must call this method prior to changing the animatable properties of your views. The default value is UIView.AnimationCurve.easeInOut.

Use of this method is discouraged in iOS 4.0 and later. Instead, you should use theanimate(withDuration:delay:options:animations:completion:) method to specify your animations and the animation curve options.

See Also

Deprecated methods