polyhorn-ios-sys 0.4.0

Low-level iOS bindings for Polyhorn.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>

@interface PLYKeyframeAnimation : NSObject

- (instancetype)initWithDuration:(CFTimeInterval)duration
                           times:(NSArray<NSNumber *> *)times
                          values:(NSArray *)values;

- (CAKeyframeAnimation *)CAKeyframeAnimationWithKeyPath:(NSString *)keyPath;

@property (nonatomic, assign, readonly) CFTimeInterval duration;
@property (nonatomic, strong, readonly) NSArray<NSNumber *> *times;
@property (nonatomic, strong, readonly) NSArray *values;

@end