-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tweak.h
31 lines (25 loc) · 897 Bytes
/
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
#import <UIKit/UIKit.h>
#import <rootless.h>
@interface YTSettingsCell : YTCollectionViewCell
@end
@interface YTSettingsSectionItem : NSObject
@property BOOL hasSwitch;
@property BOOL switchVisible;
@property BOOL on;
@property BOOL (^switchBlock)(YTSettingsCell *, BOOL);
@property int settingItemId;
- (instancetype)initWithTitle:(NSString *)title titleDescription:(NSString *)titleDescription;
@end
@interface _ASCollectionViewCell : UICollectionViewCell
- (id)node;
@end
@interface _ASDisplayView : UIView
- (UILabel *)findLabelInSubviews:(NSArray *)subviews;
- (void)customizeLabel:(UILabel *)label;
@end
@interface YTColorPalette : NSObject // YTColorPalette [YouTube v16.05.7-v16.46.5]
@property(readonly, nonatomic) long long pageStyle;
@end
@interface YTCommonColorPalette : NSObject // YTCommonColorPalette [17.01.4-latest]
@property(readonly, nonatomic) long long pageStyle;
@end