我正在使用 uiWebView 来显示 PDF 文件。此文件作为共享文件存储在 ipad 中(使用 iTunes)。这是我的代码:
NSArray *dirPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *appDicsDir =[dirPath objectAtIndex:0];
NSString *dbPath = [appDicsDir stringByAppendingPathComponent:@".Bases_de_Datos"];
NSString *pdfBDPath = [dbPath stringByAppendingPathComponent:@"PlanoInventario.pdf"];
[self.webView setScalesPageToFit:YES];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:pdfBDPath isDirectory:NO]]];
问题是 UIWebView 需要 5 秒才能加载。PDF 大小小于 400kb。我怎样才能提高速度?
提前致谢!