Files
Swiftgram/Display/CATracingLayer.h
2016-07-06 15:40:10 +03:00

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