I use this method to show the UIDocumentPicker:
func showDocumentPicker(){ let docPicker = UIDocumentPickerViewController(documentTypes: ["public.composite-content "], inMode: UIDocumentPickerMode.Import) docPicker.delegate = self docPicker.modalPresentationStyle = UIModalPresentationStyle.FullScreen self.presentViewController(docPicker, animated: true, completion: nil) }
UIDocumentPicker displays well, but always shows
The document is missing, documents on the iCloud drive are not available because the iCloud Documents and Data option is disabled

But when I check iCloud status, iCloud Drive is on! (My application even appears in the settings there, also included!)

This happens on the Simulator and on the device (via preload distributed by Apple TestFlight)
source share