I have UIWebViewone that works fine. The delegate is working. When I open the URL, events are triggered shouldStartLoadWithRequestand webViewDidFinishLoad.
But when, for example, I click on a Google search result, it only starts shouldStartLoadWithRequest, but webViewDidFinishLoadnever gets called.
This causes problems because if I put the “load ...” indicator on shouldStartLoadWithRequest, in these cases the indicator still remains even after the page loads correctly.
Any idea why this is happening?
source
share