首页 > 代码库 > iOS 设置状态栏的背景颜色

iOS 设置状态栏的背景颜色

设置状态栏的背景颜色

- (void)setStatusBarBackgroundColor:(UIColor *)color

{

        UIView *statusBar = [[[UIApplication sharedApplication] valueForKey:@"statusBarWindow"] valueForKey:@"statusBar"];

    if ([statusBar respondsToSelector:@selector(setBackgroundColor:)]) {

        statusBar.backgroundColor = color;

    }

}

iOS 设置状态栏的背景颜色