gpt4 book ai didi

ios - 在uiwebview中加载text+pdf文件

转载 作者:行者123 更新时间:2023-11-29 02:31:59 25 4
gpt4 key购买 nike

我想一次在 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 文件的文本和第一页,..

提前致谢

最佳答案

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

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

关于ios - 在uiwebview中加载text+pdf文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26751419/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com