【发布时间】:2014-01-25 11:15:13
【问题描述】:
我希望在我的应用程序中为UIStatusBar 设置背景颜色,我希望它与UINavigationBar 的背景颜色相匹配,与Facebook 和Instagram 应用程序相同。
我尝试将此函数添加到我的AppDelegate 中的didFinishLaunchingWithOptions 方法中:
-(void) setStatusBarColour{
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0"))
{
UIView *view=[[UIView alloc] initWithFrame:CGRectMake(0, 0,self.window.rootViewController.view.frame.size.width, 20)];
view.backgroundColor=[[UIColor lightGrayColor] colorWithAlphaComponent:0.6];
[self.window.rootViewController.view addSubview:view];
}
}
它似乎不起作用。
有没有简单的方法可以做到这一点?
【问题讨论】:
标签: ios objective-c ios7 uinavigationbar uistatusbar