-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHeaders.h
executable file
·46 lines (38 loc) · 1 KB
/
Headers.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
//
// Headers.h
// AssetsUnpacker
//
// Created by kinda on 29.08.2014.
// Copyright (c) 2014 kinda. All rights reserved.
//
@interface SBApplication
- (NSBundle *)bundle;
- (NSString *)displayName;
@end
@interface SBApplicationController
+ (id)sharedInstance;
- (id)allApplications;
- (id)allDisplayIdentifiers;
- (SBApplication *)applicationWithDisplayIdentifier:(id)displayIdentifier;
@end
@interface SpringBoard
- (id)_accessibilityFrontMostApplication;
@end
@interface CUICommonAssetStorage
- (id)allAssetKeys;
- (id)allRenditionNames;
@end
@interface CUIStructuredThemeStore
- (CUICommonAssetStorage *)themeStore;
@end
@interface CUICatalog
- (CUIStructuredThemeStore *)_themeStore;
@end
@interface _UIAssetManager
+ (_UIAssetManager *)assetManagerForBundle:(NSBundle *)bundle;
- (CUICatalog *)_catalog;
- (UIImage *)imageNamed:(NSString *)name;
@end
@interface UIImage (Private)
+ (UIImage *)_applicationIconImageForBundleIdentifier:(NSString *)bundleIdentifier format:(int)format scale:(CGFloat)scale;
@end