-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathPrivateAPI.h
More file actions
35 lines (28 loc) · 732 Bytes
/
PrivateAPI.h
File metadata and controls
35 lines (28 loc) · 732 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
@import UIKit;
@interface FBScene : NSObject
- (NSString *)identifier;
@end
@interface FBSScene : NSObject
- (NSString *)identifier;
- (id)identity;
- (id)identityToken;
@end
@interface LSApplicationWorkspace : NSObject
+ (instancetype)defaultWorkspace;
- (BOOL)registerApplicationDictionary:(NSDictionary *)dict;
@end
@interface UIMutableApplicationSceneSettings : NSObject
- (void)setLevel:(CGFloat)level;
@end
@interface UIApplicationSceneSettings : NSObject
- (instancetype)initWithSettings:(id)s;
- (UIMutableApplicationSceneSettings *)mutableCopy;
- (CGFloat)level;
@end
@interface UIWindowScene(private)
- (FBSScene *)_scene;
@end
// LiveContainer API
@interface LCSharedUtils : NSObject
- (NSURL *)appGroupPath;
@end