Guest User

Untitled

a guest
Jun 6th, 2021
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIViewController.h>
  3. #import <UIKit/UIView.h>
  4.  
  5. @interface NFUIPlayerControlsRefreshViewController : UIViewController
  6. -(void)skipIntroTapped;
  7. @end
  8.  
  9. @interface NFUISkipIntroRecapButtonView: UIView
  10. @end
  11.  
  12.  
  13. %hook NFUIPlayerControlsRefreshViewController
  14. -(void)viewWillLayoutSubviews{
  15. [self skipIntroTapped];
  16. return;
  17. }
  18. %end
  19.  
  20. %hook NFUISkipIntroRecapButtonView
  21. -(void)initSubviews{
  22. return;
  23. }
  24. %end
Advertisement
Add Comment
Please, Sign In to add comment