mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
417 B
Objective-C
14 lines
417 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface TGPhotoEditorButton : UIControl
|
|
|
|
@property (nonatomic, strong) UIImage *iconImage;
|
|
@property (nonatomic, assign) bool active;
|
|
@property (nonatomic, assign) bool disabled;
|
|
@property (nonatomic, assign) bool dontHighlightOnSelection;
|
|
|
|
- (void)setIconImage:(UIImage *)image activeIconImage:(UIImage *)activeIconImage;
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated;
|
|
|
|
@end
|