thndrkiss
thndrkiss

Reputation: 4595

how to know uiwebview's progress

I have a webview which hits a website with 3 or 4 frames. I am not able to find the real end of the page loading. Is there is way to find out the progress of the webpage downloading precisely ?

Upvotes: 0

Views: 868

Answers (1)

Reed Olsen
Reed Olsen

Reputation: 9169

Have a look at the UIWebViewDelegate documentation. You can find out when the UIWebView finishes loading with -webViewDidFinishLoad: Other than that, I think you're pretty limited to the API's available in UIWebView and UIWebViewDelegate.

Upvotes: 1

Related Questions