mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-01-11 22:40:19 +00:00
55 lines
1.6 KiB
Objective-C
55 lines
1.6 KiB
Objective-C
#import "../Tweaks/YouTubeHeader/YTColorPalette.h"
|
|
#import "../Tweaks/YouTubeHeader/YTCommonColorPalette.h"
|
|
#import "uYouPlus.h"
|
|
|
|
@interface PlayerManager : NSObject
|
|
// Prevent uYou player bar from showing when not playing downloaded media
|
|
- (float)progress;
|
|
// Prevent uYou's playback from colliding with YouTube's
|
|
- (void)setSource:(id)source;
|
|
- (void)pause;
|
|
+ (id)sharedInstance;
|
|
@end
|
|
|
|
// iOS 16 uYou crash fix - @level3tjg: https://github.com/qnblackcat/uYouPlus/pull/224
|
|
@interface OBPrivacyLinkButton : UIButton
|
|
- (instancetype)initWithCaption:(NSString *)caption
|
|
buttonText:(NSString *)buttonText
|
|
image:(UIImage *)image
|
|
imageSize:(CGSize)imageSize
|
|
useLargeIcon:(BOOL)useLargeIcon
|
|
displayLanguage:(NSString *)displayLanguage;
|
|
@end
|
|
|
|
// uYouLocal fix
|
|
// @interface YTLocalPlaybackController : NSObject
|
|
// - (id)activeVideo;
|
|
// @end
|
|
|
|
// uYou theme fix
|
|
// @interface YTAppDelegate ()
|
|
// @property(nonatomic, strong) id downloadsVC;
|
|
// @end
|
|
|
|
// Fix uYou's appearance not updating if the app is backgrounded
|
|
@interface DownloadsPagerVC : UIViewController
|
|
- (NSArray<UIViewController *> *)viewControllers;
|
|
- (void)updatePageStyles;
|
|
@end
|
|
@interface DownloadingVC : UIViewController
|
|
- (void)updatePageStyles;
|
|
- (UITableView *)tableView;
|
|
@end
|
|
@interface DownloadingCell : UITableViewCell
|
|
- (void)updatePageStyles;
|
|
@end
|
|
@interface DownloadedVC : UIViewController
|
|
- (void)updatePageStyles;
|
|
- (UITableView *)tableView;
|
|
@end
|
|
@interface DownloadedCell : UITableViewCell
|
|
- (void)updatePageStyles;
|
|
@end
|
|
@interface UILabel (uYou)
|
|
+ (id)_defaultColor;
|
|
@end
|