我正在使用 UIDocumentPickerViewController 进行派生(如 Dropbox、google 等)。
let importMenu = UIDocumentPickerViewController(documentTypes: [String(kUTTypeContent),String(kUTTypeItem)], in: .import)
importMenu.delegate = self
importMenu.modalPresentationStyle = .formSheet
self.present(importMenu, animated: true, completion: nil)
但现在我正在尝试自定义 UIDocumentPickerViewController。如何在菜单中添加更多选项,如相机、画廊等。
我不能使用波纹管代码,因为UIDocumentMenuViewController
现在已弃用。
func addOption(withTitle title: String,
image: UIImage?,
order: UIDocumentMenuOrder,
handler: @escaping () -> Void)
有没有其他方法可以自定义UIDocumentPickerViewController
并添加更多选项。
谢谢