-
Notifications
You must be signed in to change notification settings - Fork 74
/
SpringBoard.h
60 lines (46 loc) · 1.29 KB
/
SpringBoard.h
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#import <Foundation/Foundation.h>
@interface SBIcon : NSObject
- (UIImage *)getIconImage:(NSInteger)format;
- (UIImage *)icon;
- (UIImage *)smallIcon;
@end
@interface SBApplicationIcon : SBIcon
@end
@interface SBIconModel : NSObject
+ (id)sharedInstance;
- (SBIcon *)iconForDisplayIdentifier:(NSString *)displayIdentifier;
- (SBApplicationIcon *)applicationIconForDisplayIdentifier:(NSString *)displayIdentifier;
@end
@interface SBIconModel (iOS8)
- (SBApplicationIcon *)applicationIconForBundleIdentifier:(NSString *)bundleIdentifier;
@end
@interface SBIconViewMap : NSObject {
SBIconModel *_model;
// ...
}
+ (SBIconViewMap *)switcherMap;
+ (SBIconViewMap *)homescreenMap;
- (SBIconModel *)iconModel;
@end
@interface SBApplication : NSObject
@property (nonatomic, readonly) NSString *displayIdentifier;
@property (nonatomic, readonly) NSString *displayName;
- (NSString *)pathForIcon;
- (NSString *)pathForSmallIcon;
- (NSArray *)tags;
@end
@interface SBApplicationInfo : NSObject
- (BOOL)hasHiddenTag;
@end
@interface SBApplication (iOS10)
- (SBApplicationInfo *)info;
@end
@interface SBApplicationController : NSObject
- (NSArray *)allApplications;
@end
@interface SBIconController : NSObject
+ (id)sharedInstance;
@end
@interface SBIconController (iOS93)
- (SBIconViewMap *)homescreenIconViewMap;
@end