mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
626 B
Objective-C
18 lines
626 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <LegacyComponents/LegacyComponentsContext.h>
|
|
|
|
@class TGOverlayFormsheetWindow;
|
|
|
|
@interface TGOverlayFormsheetController : UIViewController
|
|
|
|
@property (nonatomic, weak) TGOverlayFormsheetWindow *formSheetWindow;
|
|
@property (nonatomic, readonly) UIViewController *viewController;
|
|
|
|
- (instancetype)initWithContext:(id<LegacyComponentsContext>)context contentController:(UIViewController *)viewController;
|
|
- (void)setContentController:(UIViewController *)viewController;
|
|
|
|
- (void)animateInWithCompletion:(void (^)(void))completion;
|
|
- (void)animateOutWithCompletion:(void (^)(void))completion;
|
|
|
|
@end
|