mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
16 lines
393 B
Objective-C
16 lines
393 B
Objective-C
#import "TGShareSheetItemView.h"
|
|
|
|
@interface TGShareSheetButtonItemView : TGShareSheetItemView
|
|
|
|
@property (nonatomic, copy) void (^pressed)();
|
|
|
|
- (instancetype)initWithTitle:(NSString *)title pressed:(void (^)())pressed;
|
|
- (void)setTitle:(NSString *)title;
|
|
- (void)setBold:(bool)bold;
|
|
- (void)setImage:(UIImage *)image;
|
|
- (void)setDestructive:(bool)destructive;
|
|
|
|
- (void)_buttonPressed;
|
|
|
|
@end
|