I am trying to show a fully loaded webview. I do not want the user to view the web view during the download process. I process several web views at a time, and using webViewDidFinishLoad makes it a lot more complicated for me, so I'm trying to do something like this:
while(_lastWebView.isLoading) { _lastWebView.hidden=YES; } _lastWebView.hidden=NO;
But I get this message: void SendDelegateMessage (NSInvocation *): delegate () could not return after waiting 10 seconds. main launch mode: kCFRunLoopDefaultMode
I donβt understand why to introduce a loop because isLoading returns 0 when the download is complete.
Segev source share