UIViewAnimationCurve Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An enumeration of animation curve styles.
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.WatchOS, ObjCRuntime.PlatformArchitecture.All, null)]
public enum UIViewAnimationCurve
type UIViewAnimationCurve =
- Inheritance
-
UIViewAnimationCurve
- Attributes
Fields
Name | Value | Description |
---|---|---|
EaseInOut | 0 | The animatione begins and ends slowly. This is the default for most animations. |
EaseIn | 1 | Causes the animation to begin slowly and speed up as it progresses. |
EaseOut | 2 | Causes the animation to begin quickly and slow down as it progresses. |
Linear | 3 | Causes the animation to proceed evenly. |