When I want to save a file to my App folder in iCloud, the save button is disabled, but it is enabled in other directories. Is there a way to enable it?
My code:
//...
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)
