我有一个使用UIWebView
在swift3上运行许多内部页面的应用程序?在从一个页面移动到另一个页面时,它显示后退按钮,但是当我点击"下载pdf"按钮查看pdf,它没有显示"返回"或者"完成"在UIWebView
内打开pdf后按钮。请指导我任何可能的解决方案。
谢谢。
答案 0 :(得分:0)
你可以使用UIDocumentInteractionController。请检查此链接,可以帮助你https://developer.apple.com/documentation/uikit/uidocumentinteractioncontroller
UIDocumentInteractionController *documentInteractionController =[UIDocumentInteractionController interactionControllerWithURL:URLOfPDF];[documentInteractionController setDelegate:self];[documentInteractionController presentPreviewAnimated:YES];