Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #import <Foundation/Foundation.h>
- #import <UIKit/UIViewController.h>
- #import <UIKit/UIView.h>
- @interface NFUIPlayerControlsRefreshViewController : UIViewController
- -(void)skipIntroTapped;
- @end
- @interface NFUISkipIntroRecapButtonView: UIView
- @end
- %hook NFUIPlayerControlsRefreshViewController
- -(void)viewWillLayoutSubviews{
- [self skipIntroTapped];
- return;
- }
- %end
- %hook NFUISkipIntroRecapButtonView
- -(void)initSubviews{
- return;
- }
- %end
Advertisement
Add Comment
Please, Sign In to add comment