mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-23 16:16:08 +02: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
|