mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-02-10 21:18:23 +00:00
git-subtree-dir: submodules/LegacyComponents git-subtree-mainline:6086305304git-subtree-split:d559434616
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
|