-
Notifications
You must be signed in to change notification settings - Fork 224
Open
Description
I have a RootViewController which is a UITabBarController;
then I have a NavigationController in this RootViewController;
after that I use self.navigationController?.pushViewController(vc, animated: true) to add a vc: CustomViewController in the NavigationController
Now I have below standard code to call this package in the vc: CustomViewController
let fileBrowser = FileBrowser(initialPath: documentsURL)
present(fileBrowser, animated: true, completion: nil)
fileBrowser.didSelectFile = { (file: FBFile) -> Void in
// things I do here...
}
However, after I select file and did those things there.
The vc: CustomViewController is removed!
It directly shows the NavigationController level.
Anyone knows how to fix this? I still need to stay in the vc: CustomViewController.
Metadata
Metadata
Assignees
Labels
No labels