次のコードを使用して、iCloud のドキュメントでピッカーを開きます。
let picker = UIDocumentPickerViewController(documentTypes:
["public.content"], in: .import)
picker.modalPresentationStyle = .formSheet
picker.delegate = self
self.present(picker, animated: true, completion: nil)
私の質問は、このコントローラーを表示せずにドキュメントのリストを取得するにはどうすればよいですか? それを行う方法はありますか?