mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 12:10:55 +00:00
21 lines
485 B
Objective-C
21 lines
485 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
typedef enum
|
|
{
|
|
TGCheckButtonStyleDefault,
|
|
TGCheckButtonStyleDefaultBlue,
|
|
TGCheckButtonStyleBar,
|
|
TGCheckButtonStyleMedia,
|
|
TGCheckButtonStyleGallery,
|
|
TGCheckButtonStyleShare
|
|
} TGCheckButtonStyle;
|
|
|
|
@interface TGCheckButtonView : UIButton
|
|
|
|
- (instancetype)initWithStyle:(TGCheckButtonStyle)style;
|
|
|
|
- (void)setSelected:(bool)selected animated:(bool)animated;
|
|
- (void)setSelected:(bool)selected animated:(bool)animated bump:(bool)bump;
|
|
|
|
@end
|