i'm developing an app that requires caching web pages (completely) along with their CSS files and images.

so after saving the entire Html of the page ( going through the links to store each file along with the Html file )

later on, while viewing the html file offline, UIWebView takes a long time to load the page, given that i'm already offline, and the file is on disk, along with its CSS and images beside that file.

i'm using this code to load the file:

  NSData *htmlData = [NSData dataWithContentsOfFile:htmlFilePath];
  [wView loadData:htmlData MIMEType:@"text/html" textEncodingName:@"UTF-8" baseURL:[NSURL fileURLWithPath:self.htmlFolderPath isDirectory:YES]];

is there any other means of loading the file to the UIWebView that can load it faster ?

P.S: it loads very fast on simulator ( offline ) but on device it takes a long time ( considering its an already offline cached file )

Thanks for help.

link|improve this question

56% accept rate
1  
Are these large web pages? What type of device are you loading on? Remember that a lot of WebKit's performance is both CPU- and memory-bound, not just connection; how's the speed differential when compared to loading 'live'? – Ben Gottlieb Jan 6 '10 at 12:31
yes they are a bit large, but they are offline ( local on disk ) there's no internet connection involved i'm loading them on iPhone 3G – zanque Jan 6 '10 at 13:21
1  
As Ben said, there is a non-zero processing time involved in rendering a web page. The iPhone 3G has a much, much slower processor than your desktop Mac does. Have you tried storing these pages on a local web server and loading them via Mobile Safari over WiFi? – Brad Larson Jan 6 '10 at 15:31
no, never tried that, but good point i will try it, thanks brad. – zanque Jan 6 '10 at 22:04
Have you altered any internal links to reference the on-disk version instead of the on-web version? (Relative URLs will be fine, but full URLs will still reach out.) Is there any JavaScript that's calling home or IFRAMEs or such? – John Franklin Jul 16 '10 at 6:52
show 1 more comment
feedback

5 Answers

I've found certain kinds of CSS can grind WebView rendering to a halt. For example:

body { -webkit-box-shadow:inset 0 0 100px #222; }

This works great in the simulator, looks nice too. But on the phone (even the iPhone 4, iOS 4.2), a simple page will take 10sec to render.

link|improve this answer
feedback

Since this probably just takes time because it needs to parse and render the page, you may consider firing up the UIWebView in the background; i.e. added as a subview, but not visible.

Maybe the UIWebView is smart enough to know it doesn't need to do anything, but I suspect that at least html and css parsing is done right away.

If it doesn't do anything without being visible, reduce size to 1x1 and set opacity=0, and put that pixel some place where it can't interfere with touch event handling.

Not perfect but it may work.

link|improve this answer
feedback

Is your solution actually cache things other than the html file, meaning pictures, css, etc, AND relinking them in the html page? I am guessing that you are downloading and caching the html page and external resources then the UIWebView is loading that html and still going out to load the external resources. That would explain the fast performance on the simulator and the slower performance on device.

Here is a library designed to do exactly what you are trying to do: ASIWebPageRequest.

It should also be noted that it could simply be a case of disk i/o bottlenecking. I know on my project, I was loading large images in a uitableview and even after they were cached I noticed quite a bit of lag when pulling them off the disk because they were so big.

link|improve this answer
1  
Would you mind rereading your post here and clarifying. I read it a number of times and can't really understand what you're trying to say in the first paragraph. The link is much appreciated though. – Josh Nov 19 '10 at 1:16
feedback

I can give you an idea about alternative ways of loading HTML from file into the UIWebView. A small project I've got uses Objective-C as a pure wrapper for UIWebView

The project is here, but the main code is below: http://github.com/robb1e/iWeb

- (void)viewDidLoad {
    NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"test" ofType:@"html" inDirectory:@"."]];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    [webView loadRequest:request];
    [super viewDidLoad];
}

I'm also exploring ways of improving the perceived performance by showing an image while the DOM is getting ready. Some answers I've had are here:

http://stackoverflow.com/questions/3316881/displaying-a-background-image-on-uiwebview

link|improve this answer
feedback

I'm almost sure you will never be able to do this. The UIWebView just needs some time to process your webpage even when it's a local page.

Keeping that in mind you can try to preload the page before it's being shown. For example if you show it after a user presses a button, preload the page when you show the button instead of when the user actually presses the button. The user doesn't notice the slow loading, because it's being handled in the background so when the user presses the button the page is already been loaded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.