You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
I have a
RootViewController
which is aUITabBarController
;then I have a
NavigationController
in thisRootViewController
;after that I use
self.navigationController?.pushViewController(vc, animated: true)
to add avc: CustomViewController
in theNavigationController
Now I have below standard code to call this package in the
vc: CustomViewController
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
.The text was updated successfully, but these errors were encountered: