mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
27 lines
542 B
Objective-C
27 lines
542 B
Objective-C
//
|
|
// LOTCompositionLayer.h
|
|
// Pods
|
|
//
|
|
// Created by Brandon Withrow on 2/17/17.
|
|
//
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import "LOTAnimationView_Compat.h"
|
|
|
|
@class LOTLayerGroup;
|
|
@class LOTAssetGroup;
|
|
|
|
@interface LOTCompositionLayer : CALayer
|
|
|
|
- (instancetype)initWithLayerGroup:(LOTLayerGroup *)layerGroup
|
|
withAssetGroup:(LOTAssetGroup *)assetGroup
|
|
withBounds:(CGRect)bounds;
|
|
|
|
- (void)addSublayer:(LOTView *)view
|
|
toLayerNamed:(NSString *)layer;
|
|
|
|
- (void)layoutCustomChildLayers;
|
|
|
|
@end
|