Hide the youtuber overlay background on iOS
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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