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.