UIWebview gets stuck with the following message in console

前端 未结 4 1136
醉梦人生
醉梦人生 2020-12-29 08:38

UIWebview gets stuck with the following message in console.

void SendDelegateMessage(NSInvocation*): delegate (webView:didFinishLoadForFrame:)   
failed to         


        
4条回答
  •  清酒与你
    2020-12-29 08:49

    Are you using any Javascript on the page you are loading?

    Specifically, are you using the method

    - (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script
    

    As the docs state the following

    JavaScript execution time is limited to 10 seconds for each top-level entry point. If your script executes for more than 10 seconds, the web view stops executing the script

    And this seems to tie in with the error message you are seeing in the console

提交回复
热议问题