1

I'm using a UIWebView in my app. When it has many pictures and is still loading, it scrolls jerkily.

How can I make the UIWebView scroll smoothly like in Mobile Safari?

Jarrod Dixon
  • 15,727
  • 9
  • 60
  • 72
user49336
  • 25
  • 4
  • - (void)webViewDidFinishLoad:(UIWebView *)webView; will tell if data has been loaded successfully in webview.Wait until this delegate hasnot been called to scroll your webView. – Paresh Navadiya Jun 01 '12 at 12:21

1 Answers1

1

you can cache your images and load them from cache to make the rendering faster. Have a look at the following answers.

1.How to save the content in UIWebView for faster loading on next launch?

2.Need content in UIWebView to display quickly

3.Substituting local data for remote UIWebView requests

Community
  • 1
  • 1
Vignesh
  • 10,205
  • 2
  • 35
  • 73