9 行
364 B
Objective-C
9 行
364 B
Objective-C
//
|
|
// Header file, shows all methods, classes, property's, and ivars hooked
|
|
// Only 1 class, 1 property, and 1 method needed here
|
|
//
|
|
|
|
@interface YTMainAppVideoPlayerOverlayView //The class hooked
|
|
@property (nonatomic, retain) UIView * backgroundView; //The property from the actual class needed
|
|
-(void)setControlsOverlayVisible:(BOOL)arg1; //The method hooked
|
|
@end |