gpt4 book ai didi

iOS UIDocumentInteractionController PDF共享问题

转载 作者:行者123 更新时间:2023-11-28 13:29:05 26 4
gpt4 key购买 nike

我想在应用程序中分享保存的 PDF。实际上,它不适用于 PRINT,也不适用于 MAIL,它正在通过 Whatsapp 和其他应用程序进行共享。

{
let fileManager = FileManager.default
let imagePAth = (Common.getDirectoryPath() as NSString).appendingPathComponent("invoice.pdf")
if fileManager.fileExists(atPath: imagePAth){
let url = URL (fileURLWithPath: localurlfile)
docController = UIDocumentInteractionController.init(url: url)
docController.presentOptionsMenu(from: self.view.frame, in: self.view, animated: true)
}else{
print("No Image")
}
}

最佳答案

您可以使用 UIActivityViewController 共享内容。

if let pdfFileUrl = URL(String("yourFileURL")) {
let vc = UIActivityViewController(activityItems: [pdfFileUrl], applicationActivities: [])
present(vc, animated: true)`enter code here`

请参阅此以获取更多信息。 Use of UIActivityViewController and UIActivityItemProvider to share PDF

关于iOS UIDocumentInteractionController PDF共享问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57786175/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com