mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 19:09:56 +00:00
23 lines
522 B
Objective-C
23 lines
522 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface CALayer (ImplicitAnimations)
|
|
|
|
+ (void)beginRecordingChanges;
|
|
+ (NSArray *)endRecordingChanges;
|
|
|
|
+ (void)overrideAnimationSpeed:(CGFloat)speed block:(void (^)())block;
|
|
|
|
@end
|
|
|
|
@interface CALayerAnimation : NSObject
|
|
|
|
@property (nonatomic, weak, readonly) CALayer *layer;
|
|
|
|
@property (nonatomic, readonly) CGRect startBounds;
|
|
@property (nonatomic, readonly) CGRect endBounds;
|
|
|
|
@property (nonatomic, readonly) CGPoint startPosition;
|
|
@property (nonatomic, readonly) CGPoint endPosition;
|
|
|
|
@end
|