I am a little confused about the management for UINavigationController to ModelView. I am having an UINavigationController in the RootView, and I want to popup another modelView from bottom to up based on RootView and in the meanwhile keep the NavigationController stays in the modelView so that I could still navigate to the next. How to implement that?
I am a little confused about the management for UINavigationController to ModelView. I am
Share
you can create your navigation controller in the RootView. Suppose you want to display modal view on button click in RootView :
Now, your modal view has navigation controller and you can push VCs from modal view using :
Hope it helps you…