swift 将文件导出到文件应用程序中的应用程序文件夹时启用保存按钮

sqxo8psd  于 2022-12-17  发布在  Swift
关注(0)|答案(1)|浏览(166)

当我想将文件保存到iCloud中我的App文件夹时,保存按钮被禁用,但在其他目录中却被启用,有没有办法启用?

我的代码:

//...
let urls: [URL] = [fileURL]
documentPickerExporter = UIDocumentPickerViewController(forExporting: urls, asCopy: true)
documentPickerExporter.delegate = self
documentPickerExporter.allowsMultipleSelection = false
documentPickerExporter.modalPresentationStyle = .popover
    
present(documentPickerExporter, animated: true, completion: nil)
p1iqtdky

p1iqtdky1#

您不需要/不需要使用文稿选取器来执行此操作。请直接将文件保存到“文稿”文件夹。如果您正在共享文件,“文稿”文件夹 * 就是 * iCloud云盘显示为您的“云中文件夹”的文件夹。

相关问题