PopoverPresentationController

PopoverPresentationController

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


上载按钮单击以UIDocumentPickerViewController打开全屏,而不是像操作表一样打开。
需要访问所有类型的文件。


在我的代码下面

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)

最佳答案

检查文档,您的答案在下图中。
ios - Swift UIDocumentPickerViewController没有像操作表弹出窗口那样显示-LMLPHP

10-04 19:17