iOS - PDF 在 UIWebView 中加载,然后使用 UIDocumentInteractionController 保存到 iBooks

发布于 2024-10-22 19:10:47 字数 374 浏览 5 评论 0原文

我正在使用 UIWebView 从网络加载 PDF,它工作得很好,让我可以按照自己想要的方式与 PDF 进行交互。

接下来,我希望能够将该 PDF 保存到 iBooks,因此我使用 UIDocumentInteractionController。在阅读文档时,您似乎只能将 UIDocumentInteractionController 与本地文件一起使用,而不是像我一样使用远程文件。

我的问题是,UIWebView 加载的 PDF 必须缓存在某个地方,所以我真的必须再次调用来下载同一文件,只是为了让 UIDocumentInteractionController 能够将其作为本地文件加载?或者我可以以某种方式使用 UIWebView 已经加载的同一个文件吗?

I am loading a PDF from the web using a UIWebView, which works great and lets me interact with the PDF how I want.

Next I would like to be able to save that PDF to iBooks, so I am using a UIDocumentInteractionController. In reading the docs it seems that you can only use UIDocumentInteractionController with local files rather than a remote file like I have.

My question is, that PDF that UIWebView loads must be cached somewhere, so I really have to do another call to download that same file, just to have UIDocumentInteractionController be able to load it as a local file? Or can I somehow use that same file that UIWebView has already loaded?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

饮惑 2024-10-29 19:10:47

您无法直接访问 UIWebView 缓存的数据。如果您只想下载 PDF 一次(这是正确的方法),请自行将文件保存在本地。然后将其加载到 UIWebView 中,如下所示:

NSURL* url = [NSURL URLWithString:@"path to local file"];
NSURLRequest* urlRequest = [[NSURLRequest alloc] initWithURL:url];
[myWebView loadRequest:urlRequest];
[urlRequest release];

You can't directly access the data that the UIWebView caches. If you only want to download the PDF once (which is the right way to do it), save the file locally yourself. Then load it in your UIWebView like so:

NSURL* url = [NSURL URLWithString:@"path to local file"];
NSURLRequest* urlRequest = [[NSURLRequest alloc] initWithURL:url];
[myWebView loadRequest:urlRequest];
[urlRequest release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文