mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 14:20:20 +00:00
25 lines
487 B
Objective-C
25 lines
487 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface CATracingLayer : CALayer
|
|
|
|
@end
|
|
|
|
@interface UITracingLayerView : UIView
|
|
|
|
@end
|
|
|
|
@interface CALayer (Tracing)
|
|
|
|
- (id _Nullable)traceableInfo;
|
|
- (void)setTraceableInfo:(id _Nullable)info;
|
|
|
|
- (bool)hasPositionOrOpacityAnimations;
|
|
|
|
- (void)setInvalidateTracingSublayers:(void (^_Nullable)())block;
|
|
- (NSArray<NSArray<CALayer *> *> * _Nonnull)traceableLayerSurfaces;
|
|
- (void)adjustTraceableLayerTransforms:(CGSize)offset;
|
|
|
|
- (void)invalidateUpTheTree;
|
|
|
|
@end
|