2020-02-22 15:38:54 +04:00

11 lines
413 B
Objective-C

#import <UIKit/UIKit.h>
@interface TGPhotoCropControl : UIControl
@property (nonatomic, copy) bool(^shouldBeginResizing)(TGPhotoCropControl *sender);
@property (nonatomic, copy) void(^didBeginResizing)(TGPhotoCropControl *sender);
@property (nonatomic, copy) void(^didResize)(TGPhotoCropControl *sender, CGPoint translation);
@property (nonatomic, copy) void(^didEndResizing)(TGPhotoCropControl *sender);
@end