i have created a tab bar application, There is a present modal view controller when button clicked in viewcontroller 1, and with navigation controller i can navigate to Viewcontroller2 from modal view My problem is that,when i navigated to viewController2 the tab bar is hidden,how can i show the tab bar?
|
|
If you're pushing a view controller onto your navigation controller's stack, then the tab bar will stay:
But if you're presenting it as a modal view controller then it becomes the top/front-most view (presented in full screen), thus hiding the tab bar until the view controller is dismissed:
The point of a modal view controller is to force the user to deal with the presented view controller before doing anything else inside the app. If you need to access |
||||
|
|