forked from khanhduytran0/TrollPad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIKitPrivate.h
More file actions
41 lines (32 loc) · 891 Bytes
/
UIKitPrivate.h
File metadata and controls
41 lines (32 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#import <UIKit/UIKit.h>
extern NSNotificationName UIPresentationControllerPresentationTransitionWillBeginNotification;
@protocol _UIPointerInteractionDriver<NSObject>
@property (assign, nonatomic) UIView *view;
@end
@interface UIDevice(private)
+ (BOOL)_hasHomeButton;
@end
@interface UIKeyboardImpl : NSObject
+ (BOOL)isFloating;
@end
@interface UIPointerInteraction(private)
- (NSArray <id<_UIPointerInteractionDriver>> *)drivers;
@end
@interface UIScreen(private)
- (BOOL)isUserInterfaceIdiomPad;
- (BOOL)_isExternal;
- (void)_setUserInterfaceIdiom:(UIUserInterfaceIdiom)idiom;
@end
@interface UIStatusBarWindow : UIWindow
@end
@interface _UIStatusBar
- (void)setTargetScreen:(UIScreen *)screen;
- (UIScreen *)targetScreen;
- (UIScreen *)_effectiveTargetScreen;
@end
@interface UIStatusBar
- (_UIStatusBar *)statusBar;
@end
@interface UIView(private)
- (UIScreen *)_screen;
@end