mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
244 B
Objective-C
14 lines
244 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface TGPhotoPaintEyedropperView : UIView
|
|
|
|
@property (nonatomic, strong) UIColor *color;
|
|
@property (nonatomic, copy) void(^locationChanged)(CGPoint, bool);
|
|
|
|
- (void)update;
|
|
- (void)present;
|
|
- (void)dismiss;
|
|
|
|
@end
|
|
|