Guest User

Untitled

a guest
Jun 6th, 2021
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 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 NFUISkipIntroRecapButtonView
  14. -(void)showSkipContentWithMarker:(id)arg1{
  15. [self.NFUIPlayerControlsRefreshViewController skipIntroTapped];
  16. }
  17. %end
  18.  
Advertisement
Add Comment
Please, Sign In to add comment