i am using the following code to present a modal View but still my navigation bar is hiding behind the status bar.

I can only see half of my Navigation bar .. Plz point out my error and Suggest me the solution to it.

 tabBarController = [[UITabBarController alloc]init ];
 UINavigationController *cntrol = [[UINavigationController alloc] initWithRootViewController:tabBarController];
NSArray* controllers = [NSArray arrayWithObjects:firstNav,secondNav,thirdNav,fourthNav,fifthNav, nil];  
tabBarController.viewControllers = controllers;  
tabBarController.selectedIndex=type;
[self presentModalViewController:cntrol animated:NO];

here firstNav, secondNav,thirdNav, fourthNav and fifthNav are the instatnces of UINavigationController.

link|improve this question

What is self here? – mbh Feb 13 at 14:28
@mbh self is again a viewController here.. – Shubham Feb 14 at 6:31
feedback

1 Answer

up vote 0 down vote accepted

TabBarControllers are not meant to live inside navigation controllers, but each tab of a TabBarController can be a NavigationController. I've never tried to display a TabBarController modally but I suppose it should work. Switch the nesting of the TabBarController/NavigationController and it should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.