栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

使用UIActivityViewController和UIActivityItemProvider共享PDF

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

使用UIActivityViewController和UIActivityItemProvider共享PDF

**

在Swift 3中使用UIActivityViewController共享PDF

**

我花了很多时间思考如何在从URL加载的UIWebView中共享PDF文件,例如“
http://youPdfFile.pdf ”

经过几天的忙碌,我发现了我认为最合适的方法:

1)PDF必须首先保存在文件系统中。 例如,可以在加载UIWebView之后完成:

class yourViewController: UIViewController{       var documentPathToLoad = "http://youPdfFile.pdf"       ...       func webViewDidFinishLoad(_ webView: UIWebView) { if yourWebView.isLoading {     // still loading     return }//Save the pdf document to file system savePdf()        }       func savePdf(){    let fileManager = FileManager.default let paths = (NSSearchPathForDirectoriesInDomain((.documentDirectory, .userDomainMask, true)[0] as NSString).appendingPathComponent("documento.pdf") let pdfDoc = NSData(contentsOf:URL(string: documentPathToLoad)!) fileManager.createFile(atPath: paths as String, contents: pdfDoc as Data?, attributes: nil)        } }

2)读取保存的文件,然后共享。 此方法在Swift 3.0.1中对我有效:

func loadPDFAndShare(){let fileManager = FileManager.default let documentoPath = (self.getDirectoryPath() as NSString).appendingPathComponent("documento.pdf")if fileManager.fileExists(atPath: documentoPath){        let documento = NSData(contentsOfFile: documentoPath)      let activityViewController: UIActivityViewController = UIActivityViewController(activityItems: [documento!], applicationActivities: nil)      activityViewController.popoverPresentationController?.sourceView=self.view      present(activityViewController, animated: true, completion: nil)  }  else {      print("document was not found")  }         }


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/649725.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号