- Instantiate UIHosting Controller
- pass a reference to
self
which is of type UIDocumentBrowserViewController
//This is somewhere in the present method of my UIDBVC subclass
let documentViewController = UIHostingController(rootView: SomeView(rootVC: self))
* In the UIDBVC subclass I created this method
```swift