mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
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
|