当前位置:主页 > 移动开发 > iOS代码 >

iOS 设置状态栏的背景颜色方法

时间:2020-10-22 22:22:32 | 栏目:iOS代码 | 点击:

设置状态栏的背景颜色

- (void)setStatusBarBackgroundColor:(UIColor *)color

{

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

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

    statusBar.backgroundColor = color;

  }

}

您可能感兴趣的文章:

相关文章