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