Files
HideYTOverlay/Tweak.h
Jamie Berghmans 6ecc4aff1c Initial commit
2019-12-08 01:23:05 +01:00

9 linhas
364 B
Objective-C

//
// Header file, shows all methods, classes, property's, and ivars hooked
// Only 1 class, 1 property, and 1 method needed here
//
@interface YTMainAppVideoPlayerOverlayView //The class hooked
@property (nonatomic, retain) UIView * backgroundView; //The property from the actual class needed
-(void)setControlsOverlayVisible:(BOOL)arg1; //The method hooked
@end