PDFファイルを表示するためにuiWebViewを使用しています。このファイルは共有ファイルとして 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 未満です。どうすれば速度を改善できますか?
前もって感謝します!