mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-04 18:41:00 +00:00
58 lines
2.1 KiB
Objective-C
58 lines
2.1 KiB
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
typedef NS_OPTIONS(NSUInteger, UIResponderDisableAutomaticKeyboardHandling) {
|
|
UIResponderDisableAutomaticKeyboardHandlingForward = 1 << 0,
|
|
UIResponderDisableAutomaticKeyboardHandlingBackward = 1 << 1
|
|
};
|
|
|
|
@interface UIViewController (Navigation)
|
|
|
|
- (void)setHintWillBePresentedInPreviewingContext:(BOOL)value;
|
|
- (BOOL)isPresentedInPreviewingContext;
|
|
- (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 disablesInteractiveKeyboardGestureRecognizer;
|
|
@property (nonatomic) bool disablesInteractiveModalDismiss;
|
|
@property (nonatomic, copy) bool (^ _Nullable disablesInteractiveTransitionGestureRecognizerNow)();
|
|
|
|
@property (nonatomic) UIResponderDisableAutomaticKeyboardHandling disableAutomaticKeyboardHandling;
|
|
|
|
@property (nonatomic, copy) BOOL (^_Nullable interactiveTransitionGestureRecognizerTest)(CGPoint);
|
|
|
|
- (void)input_setInputAccessoryHeightProvider:(CGFloat (^_Nullable)())block;
|
|
- (CGFloat)input_getInputAccessoryHeight;
|
|
|
|
@end
|
|
|
|
void applyKeyboardAutocorrection();
|
|
|
|
@interface AboveStatusBarWindow : UIWindow
|
|
|
|
@property (nonatomic, copy) UIInterfaceOrientationMask (^ _Nullable supportedOrientations)(void);
|
|
|
|
@end
|
|
|
|
/*@interface _UIPortalView : UIView
|
|
|
|
- (void)setSourceView:(UIView * _Nullable)sourceView;
|
|
- (bool)hidesSourceView;
|
|
- (void)setHidesSourceView:(bool)arg1;
|
|
- (void)setMatchesAlpha:(bool)arg1;
|
|
- (void)setMatchesPosition:(bool)arg1;
|
|
- (void)setMatchesTransform:(bool)arg1;
|
|
- (bool)matchesTransform;
|
|
- (bool)matchesPosition;
|
|
- (bool)matchesAlpha;
|
|
|
|
@end*/
|