InterpolationMethodType
Objective-C
enum InterpolationMethodType : NSInteger {}
Swift
enum InterpolationMethodType : Int, @unchecked Sendable
애니메이션 interpolation 방법 지정
-
선형 보간(변화량이 일정)
Declaration
Objective-C
InterpolationMethodTypeLinear = 0
Swift
case linear = 0
-
삼차원 함수형태 보간(변화량이 점점 증가)
Declaration
Objective-C
InterpolationMethodTypeCubicIn
Swift
case cubicIn = 1
-
삼차원 함수형태 보간(변화량이 점점 감소)
Declaration
Objective-C
InterpolationMethodTypeCubicOut
Swift
case cubicOut = 2
-
삼차원 함수형태 보간(변화량이 초반부에 증가하다 마지막에 다시 감소)
Declaration
Objective-C
InterpolationMethodTypeCubicInOut
Swift
case cubicInOut = 3