Hide the youtuber overlay background on iOS
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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