我使用的是UINavigationController
UIStatusBar在iOS7改變顏色
爲rootViewController
,我做的導航欄,以透明
[self.view setBackgroundColor:[UIColor greenColor]];
self.navigationController.navigationBar.shadowImage = [UIImage new];
[self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
的問題是,當我瀏覽到第2的viewController
[self.navigationController.navigationBar setBackgroundColor:[UIColor greenColor]];
這裏我設置navigationBar
顏色回綠色,但狀態欄沒有出現在綠色背景中。
是否有可能將狀態欄背景改爲綠色?