无法预览pdf文件。
dispatch_async(dispatch_get_main_queue(), { () -> Void in
let pdfURL = NSURL(fileURLWithPath: NSHomeDirectory().stringByAppendingString("/sample1.pdf"))
let interactionController = UIDocumentInteractionController(URL: pdfURL)
interactionController.delegate = self
interactionController.presentPreviewAnimated(true)
})
它会打开pdf但没有可用的预览,并且它在模拟器上运行良好。
答案 0 :(得分:0)
如果文件是在线存储的,并且您有一个文件的网址,那么您可以使用google文档显示该文件使用此链接
http://docs.google.com/gview?embedded=true&url=URL_TO_THE_FILE
并使用WebView显示它。
希望答案有所帮助。