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