Guest User

Untitled

a guest
Oct 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @interface SBAwayView : UIView <UIWebViewDelegate> {
  2. }
  3. -(void)webViewDidFinishLoad:(UIWebView *)webView;
  4. @end
  5.  
  6. %hook SBAwayView
  7.  
  8. -(void)method {
  9. UIWebView *web = [[UIWebVIew alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 480.0)];
  10. // web load request (works)
  11. }
  12.  
  13. -(void)webViewDidFinishLoad:(UIWebView *)webView {
  14. // NOT WORK
  15. }
Add Comment
Please, Sign In to add comment