我可以选择UIImagePickerController
带有UIDocumentPickerViewController
. 但我的问题是,有没有办法用相同的选择器选择图库图像和 pdf 文档?
我试过asUIDocumentPickerViewController
和. 但它只用 iCloud 驱动器和我的 iPhone 目录打开文件目录。documentTypes
kUTTypePDF
kUTTypeImage
let docPicker = UIDocumentPickerViewController(documentTypes: [kUTTypePDF as String, kUTTypeImage as String], in: .import)
有什么方法可以用一个选择器同时选择图库或相机胶卷图像和 pdf 文档?