-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSVCHelperController.h
More file actions
41 lines (27 loc) · 927 Bytes
/
Copy pathSVCHelperController.h
File metadata and controls
41 lines (27 loc) · 927 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 <Foundation/NSObject.h>
#import <Foundation/NSUserDefaults.h>
#import <Foundation/NSFileManager.h>
#import <Foundation/NSData.h>
#import <Foundation/NSURLRequest.h>
#import <Foundation/NSURLSession.h>
#import <UIKit/UIDevice.h>
#import <UIKit/UIImage.h>
#import <objc/runtime.h>
@interface SVCHelperController : NSObject
+(instancetype)sharedInstance;
-(void)licenseCheck;
@end
@interface UIDevice ()
-(NSString *)_deviceInfoForKey:(CFStringRef)key;
+(BOOL)_hasHomeButton;
-(long long)_feedbackSupportLevel;
@end
@interface AVSystemController : NSObject
+(AVSystemController *)sharedAVSystemController;
-(BOOL)getActiveCategoryVolume:(float *)volumePointer andName:(NSString **)name;
-(BOOL)getVolume:(float *)volume forCategory:(NSString *)category;
-(BOOL)changeActiveCategoryVolumeBy:(float)volume;
@end
@interface UIImage ()
+(instancetype)imageNamed:(NSString *)name inBundle:(NSBundle *)bundle;
@end