iOS - PDF 在 UIWebView 中加载,然后使用 UIDocumentInteractionController 保存到 iBooks
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法直接访问 UIWebView 缓存的数据。如果您只想下载 PDF 一次(这是正确的方法),请自行将文件保存在本地。然后将其加载到 UIWebView 中,如下所示:
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: