Fat*_*ima 5 ios uiactivityviewcontroller swift
我正在使用 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)
Run Code Online (Sandbox Code Playgroud)
显示以下结果:
我想要的是显示更多功能,例如“复制到书籍”和“添加到笔记”,如下所示:
如果您想共享服务器上的 pdf 文件并且您有一个 URL。然后,您首先将该文件下载到您的设备中,然后将该文件共享给任何其他人。
如果您在代码中使用Alamofire,那么就有代码。
镫骨1
import Alamofire
Run Code Online (Sandbox Code Playgroud)
镫骨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
}
}
}
Run Code Online (Sandbox Code Playgroud)
镫骨3
在您的分享按钮上添加此操作
@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)
}
}
Run Code Online (Sandbox Code Playgroud)