2013-12-17 63 views
-1

enter image description here我在UIWindow中添加了UITabBarController視圖。 TabBarController視圖混亂了狀態欄。 TabBarController位於MainWindow.xib中。我怎樣才能解決這個問題?iOS7中的TabBarController狀態欄問題

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]; 
+0

看到scren shot – Deepesh

+0

我加了截圖,請檢查一下。 –

回答

1

在視圖控制器

if ([self respondsToSelector:@selector(edgesForExtendedLayout)]) 
    self.edgesForExtendedLayout = UIRectEdgeNone; // iOS 7 specific 

添加該代碼在你viewDidLoad中方法。

+0

你的問題解決不了嗎? – Deepesh