我在服务器上有一本大约 1800 页(6 MB 大小)的 PDF 书籍。我已经使用一种方法在 webview 中成功阅读它。这是我的代码。
self.webView = [[[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)] autorelease];
self.webView.backgroundColor = [UIColor whiteColor];
self.webView.scalesPageToFit = YES;
self.webView.delegate = self;
[self.view addSubview:self.webView];
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.hilbert1862.com/Books/American Standard Version.pdf"]]];
但是由于负载很重,它需要太多时间才能在 webview 中显示。任何人都可以分享一种更快的方法来在 webview 中显示它或部分显示它(意味着通过滚动 webview 来下载新页面)。thanx