mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
17 lines
528 B
Objective-C
17 lines
528 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@class TGOverlayFormsheetWindow;
|
|
|
|
@interface TGOverlayFormsheetController : UIViewController
|
|
|
|
@property (nonatomic, weak) TGOverlayFormsheetWindow *formSheetWindow;
|
|
@property (nonatomic, readonly) UIViewController *viewController;
|
|
|
|
- (instancetype)initWithContentController:(UIViewController *)viewController;
|
|
- (void)setContentController:(UIViewController *)viewController;
|
|
|
|
- (void)animateInWithCompletion:(void (^)(void))completion;
|
|
- (void)animateOutWithCompletion:(void (^)(void))completion;
|
|
|
|
@end
|