mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-28 08:49:46 +00:00
git-subtree-dir: submodules/LegacyComponents git-subtree-mainline:6086305304git-subtree-split:d559434616
13 lines
372 B
Objective-C
13 lines
372 B
Objective-C
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@interface TGAnimationBlockDelegate : NSObject <CAAnimationDelegate>
|
|
|
|
@property (nonatomic) bool removeLayerOnCompletion;
|
|
@property (nonatomic) NSNumber *opacityOnCompletion;
|
|
@property (nonatomic, weak) CALayer *layer;
|
|
@property (nonatomic, copy) void (^completion)(BOOL finished);
|
|
|
|
- (instancetype)initWithLayer:(CALayer *)layer;
|
|
|
|
@end
|