Swiftgram/LegacyComponents/TGCheckButtonView.h
2017-07-28 16:50:06 +03:00

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