mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
18 lines
392 B
Objective-C
18 lines
392 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)initWithLayerDuration:(NSTimeInterval)duration NS_DESIGNATED_INITIALIZER;
|
|
|
|
@property (nonatomic, readonly) NSTimeInterval layerDuration;
|
|
|
|
@end
|