-
Notifications
You must be signed in to change notification settings - Fork 7
/
Tweak.h
77 lines (58 loc) · 1.59 KB
/
Tweak.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@interface SBApplication : NSObject
@end
@interface UILabel ()
- (UIColor*)customTextColor;
- (void)setCustomTextColor:(UIColor*)arg;
@end
@interface UIImageView ()
- (UIColor *)customTintColor;
- (void)setCustomTintColor:(UIColor *)arg;
@end
@interface CAShapeLayer ()
- (UIColor*)customStrokeColor;
- (void)setCustomStrokeColor:(UIColor*)arg;
@end
@interface SBMediaController: NSObject
+ (id)sharedInstance;
- (SBApplication*)nowPlayingApplication;
- (id)_nowPlayingInfo;
@end
@interface UIView ()
- (id)_viewControllerForAncestor;
- (UIColor *)customBackgroundColor;
- (void)setCustomBackgroundColor:(UIColor *)arg;
- (id)_rootView;
@end
@interface CALayer (Undocumented)
@property (assign) BOOL continuousCorners;
@end
@interface MTMaterialLayer : CALayer
@end
@interface MTMaterialView: UIView
-(id)_materialLayer;
@end
@interface MediaControlsMaterialView : UIView
@end
@interface PLPlatterView : UIView
@end
@interface MRUCoverSheetViewController : UIViewController
@end
@interface CSMediaControlsViewController : UIViewController
@end
@interface MRUNowPlayingLabelView : UIView
@end
@interface MRUNowPlayingRoutingButton : UIView
@end
@interface MRUNowPlayingVolumeControlsView : UIView
@end
@interface MRUTransportButton : UIView
@end
@interface MRUNowPlayingTransportControlsView : UIView
@property (nonatomic,retain) MRUTransportButton * languageOptionsButton;
@end
@interface MRUNowPlayingControlsView : UIView
@property (strong, nonatomic) UIView *volumeControlsView;
@end
@interface MRUNowPlayingView : UIView
@property (strong, nonatomic) MRUNowPlayingControlsView *controlsView;
@end