mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-28 08:30:11 +00:00
25 lines
938 B
Objective-C
25 lines
938 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIViewController (Navigation)
|
|
|
|
- (void)setIgnoreAppearanceMethodInvocations:(BOOL)ignoreAppearanceMethodInvocations;
|
|
- (BOOL)ignoreAppearanceMethodInvocations;
|
|
- (void)navigation_setNavigationController:(UINavigationController * _Nullable)navigationControlller;
|
|
- (void)navigation_setPresentingViewController:(UIViewController * _Nullable)presentingViewController;
|
|
- (void)navigation_setDismiss:(void (^_Nullable)())dismiss rootController:( UIViewController * _Nullable )rootController;
|
|
- (void)state_setNeedsStatusBarAppearanceUpdate:(void (^_Nullable)())block;
|
|
|
|
@end
|
|
|
|
@interface UIView (Navigation)
|
|
|
|
@property (nonatomic) bool disablesInteractiveTransitionGestureRecognizer;
|
|
@property (nonatomic) bool disablesAutomaticKeyboardHandling;
|
|
|
|
- (void)input_setInputAccessoryHeightProvider:(CGFloat (^_Nullable)())block;
|
|
- (CGFloat)input_getInputAccessoryHeight;
|
|
|
|
@end
|
|
|
|
void applyKeyboardAutocorrection();
|