12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
-
-
-
-
-
-
-
- #import <Foundation/Foundation.h>
-
- NS_ASSUME_NONNULL_BEGIN
-
- NS_SWIFT_NAME(InterpolationBehavior)
- typedef const NSString* LNInterpolationBehavior NS_TYPED_EXTENSIBLE_ENUM;
-
-
- extern LNInterpolationBehavior const LNInterpolationBehaviorUseDefault;
-
-
-
- NS_SWIFT_NAME(Interpolable)
- @protocol LNInterpolable <NSObject>
-
-
- - (instancetype)interpolateToValue:(id)toValue progress:(double)progress NS_SWIFT_NAME(interpolate(to:progress:));
-
-
- - (instancetype)interpolateToValue:(id)toValue progress:(double)progress behavior:(LNInterpolationBehavior)behavior NS_SWIFT_NAME(interpolate(to:progress:behavior:));
-
- NS_ASSUME_NONNULL_END
-
- @end
|