UIWebview显示带有完成或后退按钮的pdf

时间:2017-08-14 09:07:59

标签: ios swift uiwebview

我有一个使用UIWebView在swift3上运行许多内部页面的应用程序?在从一个页面移动到另一个页面时,它显示后退按钮,但是当我点击"下载pdf"按钮查看pdf,它没有显示"返回"或者"完成"在UIWebView内打开pdf后按钮。请指导我任何可能的解决方案。

谢谢。

1 个答案:

答案 0 :(得分:0)

你可以使用UIDocumentInteractionController。请检查此链接,可以帮助你https://developer.apple.com/documentation/uikit/uidocumentinteractioncontroller

UIDocumentInteractionController *documentInteractionController =[UIDocumentInteractionController interactionControllerWithURL:URLOfPDF];[documentInteractionController setDelegate:self];[documentInteractionController presentPreviewAnimated:YES];