1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/Telegraph/TGShareSheetWindow.h

16 lines
467 B
C
Raw Normal View History

2016-02-25 01:03:51 +01:00
#import "TGShareSheetView.h"
@interface TGShareSheetWindow : UIWindow
@property (nonatomic, copy) void(^dismissalBlock)(void);
- (void)switchToSheetView:(TGShareSheetView *)sheetView;
- (void)switchToSheetView:(TGShareSheetView *)sheetView stickToBottom:(bool)stickToBottom;
- (void)showAnimated:(bool)animated completion:(void (^)(void))completion;
- (void)dismissAnimated:(bool)animated completion:(void (^)(void))completion;
- (TGShareSheetView *)view;
@end