Swiftgram/lottie-ios/Classes/AnimatableProperties/LOTAnimatableColorValue.h
2017-02-07 15:14:48 -08:00

21 lines
519 B
Objective-C

//
// LOTAnimatableColorValue.h
// LottieAnimator
//
// Created by brandon_withrow on 6/23/16.
// Copyright © 2016 Brandon Withrow. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
#import "LOTAnimatableValue.h"
#import "LOTPlatformCompat.h"
@interface LOTAnimatableColorValue : NSObject <LOTAnimatableValue>
- (instancetype)initWithColorValues:(NSDictionary *)colorValues frameRate:(NSNumber *)frameRate;
@property (nonatomic, readonly) UIColor *initialColor;
@end