首页 > 解决方案 > 在 Swift 4 中使用 UIActivityViewController 共享 pdf 文件

问题描述

我正在使用 UIActivityViewController 共享 PDF 文件:

let pdfFilePath = URL(string: "https://www.tutorialspoint.com/swift/swift_tutorial.pdf")
let pdfData = NSData(contentsOf: pdfFilePath!)
let activityVC = UIActivityViewController(activityItems: [pdfData!], applicationActivities: nil)

present(activityVC, animated: true, completion: nil)

显示以下结果:

在此处输入图像描述

我想要的是显示更多功能,例如“复制到书籍”和“添加到笔记”,如下所示:

在此处输入图像描述

标签: iosswiftuiactivityviewcontroller

解决方案


如果您想共享服务器上的 pdf 文件并且您有一个 URL。然后首先将该文件下载到您的设备中,然后将该文件共享给任何其他人。

如果您Alamofire在代码中使用,则有代码。

第一阶段

import Alamofire

第 2 阶段

在您的课程中添加此功能:-

func downloadPdf(downloadUrl : String, fileName: String, completionHandler:@escaping(String, Bool)->()){

        let destinationPath: DownloadRequest.DownloadFileDestination = { _, _ in
            let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)[0];
            let fileURL = documentsURL.appendingPathComponent("\(fileName).pdf")
            return (fileURL, [.removePreviousFile, .createIntermediateDirectories])
        }
        print(downloadUrl)
        Alamofire.download(downloadUrl, to: destinationPath)
            .downloadProgress { progress in

            }
            .responseData { response in
                print("response: \(response)")
                switch response.result{
                case .success:
                    if response.destinationURL != nil, let filePath = response.destinationURL?.absoluteString {
                        completionHandler(filePath, true)
                    }
                    break
                case .failure:
                    completionHandler("", false)
                    break
                }
        }
    }

第三阶段

在您的分享按钮上添加此操作

@IBAction func btnShareAction(_ sender: UIButton) {

        let myURL = "http://www.demo.com/demo.pdf"  // change this with your URL
        self.downloadPdf(downloadUrl : myURL, fileName: "invoice") { (localFileUrl, bool) in

             let fileURL = NSURL(fileURLWithPath: localFileUrl)
            let activityViewController = UIActivityViewController(activityItems: [fileURL], applicationActivities: nil)
            self.present(activityViewController, animated: true, completion: nil)

          }
      }

推荐阅读