このメソッドを使用して、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 はうまく表示されますが、常に表示されます
ドキュメントがありません。iCloud ドキュメントとデータの設定が無効になっているため、iCloud Drive のドキュメントは利用できません
しかし、iCloud のステータスを確認すると、iCloud Drive が有効になっています。(私のアプリは設定にも表示され、有効になっています!)
これは、シミュレーターとデバイスで発生します (Apple TestFlight によって配布されるプレリリースを介して)。