UIDocumentBrowserViewController和UIDocumentPickerViewController之间有什么区别?到目前为止,使用UIDocumentPickerViewController本身是否足够?
发布于 2019-01-17 14:10:23
现在有点老问题了,但从WWDC2018会话216:管理iOS应用程序中的文档来看,它们的主要区别是文档选择器用于快速用户交互,而文档浏览器则是应用程序的主要文档浏览UI。

我建议观看会议(约10分钟),以了解更多细节。
发布于 2018-02-15 01:52:52
长话短说:
UIDocumentBrowserViewController很像iPhone上的Files应用程序,它为您处理很多事务,比如iCloud同步和共享。https://developer.apple.com/documentation/uikit/uidocumentbrowserviewcontroller
UIDocumentPickerViewController只用于访问文件系统中的文件:https://developer.apple.com/documentation/uikit/uidocumentpickerviewcontroller
https://stackoverflow.com/questions/47974982
复制相似问题