Load text+pdf file in uiwebview

2019-08-30 02:05发布

I want to show some text and pdf file in a webview at a time.

is there any possibility..

i had tried using

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];

This shows the text and only the first page of pdf file,..

Thanks in advance

1条回答
家丑人穷心不美
2楼-- · 2019-08-30 02:29

Use another way to load pdf and above the webView add a UILabel to show the text. As you see pdf is treated as a image so that only one page is showed.

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"FR" ofType:@"pdf"];
NSURL *filePathURL = [NSURL fileURLWithPath:filePath];
[self.webView loadRequest:[NSURLRequest requestWithURL:filePathURL]];
查看更多
登录 后发表回答