Hi all~
I made Documents viewer using UIWebView. Load time is short, because file is in the local.
But scrolling speed make me so crazy. that scroll performance is very poor !!
I made it using so simple code.
NSURLRequest* request = [NSURLRequest requestWithURL:fileURL cachePolocy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:60.0];
[self.webView loadRequest:request];
How to enhance the performance of UIWebView????????