欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2023-12-20 08:03:21
设置状态栏的背景颜色 - (void)setstatusbarbackgroundcolor:(uicolor *)color { uivie...

设置状态栏的背景颜色

- (void)setstatusbarbackgroundcolor:(uicolor *)color

{

    uiview *statusbar = [[[uiapplication sharedapplication] valueforkey:@"statusbarwindow"] valueforkey:@"statusbar"];

  if ([statusbar respondstoselector:@selector(setbackgroundcolor:)]) {

    statusbar.backgroundcolor = color;

  }

}

以上这篇ios 设置状态栏的背景颜色方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

上一篇:

下一篇: