Swiftgram/LegacyComponents/TGCheckButtonView.h
Ilya Laktyushin ff0d334f19 no message
2017-09-12 10:41:47 +03:00

23 lines
523 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;
- (void)setNumber:(NSInteger)number;
@end