UIWebview gets stuck with the following message in console

前端 未结 4 1092
醉梦人生
醉梦人生 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:53

    Below code snippet worked for me.

    if(!webview.isLoading)
    {
       // update your code.
    }
    

提交回复
热议问题