Hide the youtuber overlay background on iOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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