Hide the youtuber overlay background on iOS
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

9 Zeilen
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