Swift UIDocumentPickerViewController没有像操作表弹出窗口那样显示

时间:2018-08-10 10:02:56

标签: ios swift uidocumentpickerviewcontroller

我正在尝试访问第三方云应用程序。我的应用程序上传按钮单击以打开UIDocumentPickerViewController并需要选择文件(单个或多个),然后我正在上传服务器。

  1. 上载按钮单击以UIDocumentPickerViewController打开全屏,而不是像操作表一样打开。

  2. 需要访问所有类型的文件。

下面是我的代码

let importMenu = UIDocumentPickerViewController(documentTypes: ["public.text", "com.apple.iwork.pages.pages", "public.data"], in: .import)
importMenu.delegate = self
importMenu.modalPresentationStyle = .formSheet            
if let popoverPresentationController = importMenu.popoverPresentationController {
    popoverPresentationController.sourceView = self.view;
    //popoverPresentationController.sourceView = sender as? UIView
    //popoverPresentationController.sourceRect = sender.bounds
}
self.present(importMenu, animated: true, completion: nil)  

1 个答案:

答案 0 :(得分:0)

查看文档,您的答案如下图所示。 enter image description here