Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想读取来自服务器的 URl 中的 pdf 文件。我没有使用 UIWebview。
所以,我只想知道有没有办法在不下载到设备的情况下查看该pdf文件。只是它是可读的或缓冲的,而不是存储的。
任何建议。
在 UIWebView 之外显示 PDF 的最简单方法是使用 QuickLook 框架:
http://developer.apple.com/library/ios/#documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/UsingtheQuickLookFramework.html
但是,并非不合理,Quicklook 需要“文件”类型的 URL。
因此,如果不使用 UIWebView,您需要添加自己的代码来下载/缓存/显示,这并不难。如果您需要示例代码,请告诉我。