Enumeration: UIViewAnimationCurve
Overview
Specifies the supported animation curves.
Constant Summary
- UIViewAnimationCurveEaseInOut
An ease-in ease-out curve causes the animation to begin slowly, accelerate through the middle of its duration, and then slow again before completing. this is the default curve for most animations.available in ios 2.0 and later.declared in uiview.h.
- UIViewAnimationCurveEaseIn
An ease-in curve causes the animation to begin slowly, and then speed up as it progresses.available in ios 2.0 and later.declared in uiview.h.
- UIViewAnimationCurveEaseOut
An ease-out curve causes the animation to begin quickly, and then slow down as it completes.available in ios 2.0 and later.declared in uiview.h.
- UIViewAnimationCurveLinear
A linear animation curve causes an animation to occur evenly over its duration.available in ios 2.0 and later.declared in uiview.h.