iOS7中的TabBarController状态栏问题

时间:2013-12-17 10:57:36

标签: ios iphone ipad ios7 statusbar

enter image description here我在UIWindow上添加了UITabBarController视图。 TabBarController视图搞乱状态栏。 TabBarController位于MainWindow.xib中。我该如何解决这个问题?

window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
tabController.viewControllers = [NSArray arrayWithObjects:nearbySplit, mySplit, allSplit, messageSplit, nil];
tabController.selectedIndex = 0;
    window.rootViewController = tabController;
    [window addSubview:tabController.view];

    [window makeKeyAndVisible];

1 个答案:

答案 0 :(得分:1)

在视图控制器中添加此代码

if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
    self.edgesForExtendedLayout = UIRectEdgeNone;   // iOS 7 specific
viewDidLoad 方法中的