How to tell the difference between an iframe loading vs. entire page loading in a UIWebView?

后端 未结 3 793
暖寄归人
暖寄归人 2021-02-04 09:18

In the [webView:shouldStartLoadWithRequest:navigationType:] event, how can you tell the difference between an iframe that\'s loading content vs. the entire page loading content?

3条回答
  •  北荒
    北荒 (楼主)
    2021-02-04 09:46

     (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
    {
    
    BOOL isFrame = ![[[request URL] absoluteString] isEqualToString:[[request mainDocumentURL] absoluteString]];
    
    }
    

提交回复
热议问题