在uiwebview中加载文本+ pdf文件

时间:2014-11-05 07:02:10

标签: ios pdf uiwebview

我想一次在webview中显示一些文本和pdf文件。

有没有可能..

我曾尝试使用

NSString *htmlString = [NSString stringWithFormat:@"<p>some text which i need to show above pdf</p><img src=\"file://%@\">",@"FR.pdf"];
NSString *bundleP = [[NSBundle mainBundle] resourcePath];
NSURL *fileURL = [NSURL fileURLWithPath:bundleP];
[pdfWebView loadHTMLString:htmlString baseURL:fileURL];

这显示了文本,只显示了pdf文件的第一页,..

提前致谢

1 个答案:

答案 0 :(得分:1)

使用其他方式加载pdf并在webView上方添加UILabel以显示文字。如您所见,pdf被视为image,因此只显示一个页面。

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"FR" ofType:@"pdf"];
NSURL *filePathURL = [NSURL fileURLWithPath:filePath];
[self.webView loadRequest:[NSURLRequest requestWithURL:filePathURL]];