Hide the youtuber overlay background on iOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
364B

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