我正在使用以下代码来呈现模态视图,但我的导航栏仍然隐藏在状态栏后面。
我只能看到我的导航栏的一半.. 请指出我的错误并建议我解决它。
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];
这里firstNav、secondNav、thirdNav、fourthNav和fifthNav是UINavigationController的实例。