1

我尝试通过以下代码将文件导入我的应用程序:

let importMenu = UIDocumentMenuViewController(documentTypes: [String(kUTTypeData)], in: .import)
        importMenu.delegate = self
        importMenu.modalPresentationStyle = .popover
        importMenu.popoverPresentationController?.sourceView = self.view
        self.present(importMenu, animated: true, completion: nil)

它只显示浏览选项,尽管我安装了 Google Drive 和 Dropbox 应用程序。

在此处输入图像描述

当我点击浏览时,它会打开文件应用程序浏览器,我可以选择云驱动器,但我希望它们显示在浏览选项上方,如下所示:

在此处输入图像描述

我怎样才能做到这一点?

4

0 回答 0