在我的应用程序中,我显示了一些远程图像或 PDF 文件,并希望让用户能够下载它们。为此,我尝试先将它们保存在本地,.documentDirectory
然后再打开 aUIDocumentInteractionController
来处理文件。
但是,我遇到了一个问题,即使操作表打开得很好并提出了所有预期的选项,最后我也永远无法使用该文件,因为出现了错误。具体来说:
- 如果我尝试在邮件中使用该文件,邮件会打开但为空,
- 如果我尝试在 Whatsapp 中使用它,我会收到一条错误消息“无法共享该项目。请选择其他项目。”
- 如果我选择“保存到文件”,文件操作表会短暂打开,但随后会立即关闭,并在控制台中显示错误消息:
[ShareSheet] cancelled request - error: The operation couldn’t be completed. Invalid argument
这是我用来缓存远程文件的代码,然后用以下命令打开它UIDocumentInteractionController
:
URLSession.shared.downloadTask(with: url) { localUrl, response, error in
if let localUrl = localUrl {
do {
let imageData = try Data(contentsOf: localUrl)
let d = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last
if let docUrl = d?.appendingPathComponent(url.lastPathComponent) {
try imageData.write(to: docUrl)
self.download(docUrl)
}
} catch {
print("Oops: \(error)")
}
}
}.resume()
func download(_ url: URL) {
DispatchQueue.main.async {
let documentInteractionController = UIDocumentInteractionController()
documentInteractionController.delegate = self
documentInteractionController.url = url
documentInteractionController.uti = url.typeIdentifier ?? "public.data, public.content"
documentInteractionController.name = url.localizedName ?? url.lastPathComponent
documentInteractionController.presentOptionsMenu(from: self.view.frame, in: self.view, animated: true)
}
}
谢谢您的帮助