Link Search Menu Expand Document

TimingCurveType

Constants indicating the type of timing information to use.

public enum TimingCurveType: Int 

Inheritance

Int

Enumeration Cases

builtin

Use the built-in timing curves. Specify this value when you want to use one of the constants in the View.AnimationCurve type. Specify the desired curve using the cubicTimingParameters property.

case builtin

cubic

Use a custom cubic Bézier curve. Specify the curve information using the cubicTimingParameters property.

case cubic

spring

Use a custom spring animation. Specify the desired curve using the springTimingParameters property.

case spring

composed

Use a combination of timing parameters. This type of curve starts with the curve defined by the cubicTimingParameters property and modifies it using the spring information in the springTimingParameters property.

case composed