0

在我的应用程序中,我显示了一些远程图像或 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)
    }
}

谢谢您的帮助

4

1 回答 1

1

我无法告诉你为什么它不能与 a 一起使用UIDocumentInteractionController,但它可以与 UIActivityViewController 一起使用。

    private func download(_ url: URL)
    {
        DispatchQueue.main.async {
            let avc = UIActivityViewController(activityItems: [url], applicationActivities: nil)
            self.present(avc, animated: true, completion: nil)
        }
    }
于 2021-06-24T10:49:28.457 回答