文件应用程序视图控制器?

Files App View Controller?

在 iOS 的 Pages、Numbers 和 Keynote 3.3 中,Apple 取消了其自定义文件管理器,而是使用 iOS 11 Files App 的一个版本来允许用户在应用程序中选择并保存文件,

Pages 和 Keynote 3.3 上用于 iOS11 的类文件文档选择器用户界面:

这是开发人员可以在第 3 方应用程序中实现的公开视图控制器吗?

Apple 在用户支持文档中提到这些应用 "work together" 可以呈现此视图。 Link: https://support.apple.com/en-us/HT208077

UIDocumentBrowserViewController.

至于"how did they make it the root view controller of the app? Isn't [it] usually presented from another View Controller?"

查看此页面:Adding a Document Browser to Your App

Always assign the document browser as your app's root view controller. Don't place the document browser in a navigation controller, tab bar, or split view, and don't present the document browser modally.

该页面上有很多有用的资源,但很多似乎取决于您的应用 "Document Based" (About Document-Based Applications in iOS)。