mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 02:20:07 +00:00
18 lines
393 B
Objective-C
18 lines
393 B
Objective-C
//
|
|
// LOTAnimatableLayer.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 7/21/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@interface LOTAnimatableLayer : CALayer
|
|
|
|
- (instancetype)initWithDuration:(NSTimeInterval)duration NS_DESIGNATED_INITIALIZER;
|
|
|
|
@property (nonatomic, readonly) NSTimeInterval laAnimationDuration;
|
|
|
|
@end
|