i have a UITabBarController with 5 Items. On one of these ViewController i have a Button, i’m gonna call it “start”, so when i press start, i want to have another ViewController Pushed in, but still have the TabBar Visible.
if i use this code
[self presentModalViewController:viewController animated:YES]
the new ViewController hides the TabBar.
Any advices?
What about adding as subview:
[self.view addSubview:viewController.view];. Don’t forget to set appropriateframefor subview.And don’t forget this: