iCloud Driveからファイルを選択するアプリを開発しようとしてます。
ファイルを同時に複数選択したくべく、UIDocumentPickerViewControllerを
func selectFilesDocumentPicker() { let allowedUtis : [String] = [ UTType.rtf.identifier, UTType.png.identifier, UTType.text.identifier, UTType.pdf.identifier, UTType.image.identifier, UTType.utf8PlainText.identifier, UTType.utf16PlainText.identifier, UTType.fileURL.identifier, "com.microsoft.word.doc", "org.openxmlformats.wordprocessingml.document", "com.microsoft.powerpoint.ppt", "org.openxmlformats.spreadsheetml.sheet", "org.openxmlformats.presentationml.presentation", "com.microsoft.excel.xls" ] let picker = UIDocumentPickerViewController(documentTypes: allowedUtis, in: .import) picker.delegate = self picker.allowsMultipleSelection = true self.present(picker, animated: false, completion: nil) }
と定義してpresentしたのですが、ファイルを1つ選んだだけでpickerがdissmissしてしまいます。
iPhoneでは複数ファイル選択に対応していないのでしょうか?
Xcode 12.0.1
iPhone X iOS14.0.1
を使用して開発しています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/17 01:48