I have UITabBar based navigation and want always tabbar on top other widows. In one controller i have method which opens other controller, but when i use this UITabBar disappear.
What i should do more ?
ThirdView*third =[[ThirdView alloc] initWithNibName:nil bundle:nil];
third.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self.tabBarController presentModalViewController:third animated:YES];
[third release];
You should use
UINavigationControllers for the tabs of yourUITabBarController. Then to present a newUIViewControlleryou want to push new it onto the stack of yourUINavigationController. You can do this like so:If you want the modal effect, you could do something like this: