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; } }
上一篇:iOS实现scrollview上拉显示Navbar下拉隐藏功能详解
栏 目:iOS代码
下一篇:IOS UITableView和UITableViewCell的几种样式详细介绍
本文标题:iOS 设置状态栏的背景颜色方法
本文地址:http://www.codeinn.net/misctech/14595.html