iOS8中如何将状态栏的字体颜色改为白色
2024-08-16 11:09:41
网上的一些方法在我这行不通,
比如:
UIApplication.sharedApplication().statusBarStyle = UIStatusBarStyle.LightContent
、Set the UIViewControllerBasedStatusBarAppearance to YES in the .plist file. 、In the viewDidLoad do a [self setNeedsStatusBarAppearanceUpdate]; 、Add the following method: -(UIStatusBarStyle)preferredStatusBarStyle{
return UIStatusBarStyleLightContent;
}
最后终于有个方法OK
1、设置Info.plist中的View controller-based status bar appearance为YES
2、然后在AppDelegate.swift中的
func application(application: UIApplication!, didFinishLaunchingWithOptions launchOptions: NSDictionary!) -> Bool
方法中加入:
UINavigationBar.appearance().barStyle = UIBarStyle.Black
OK,就是这么简单。这样状态栏的字体就变成白色了!
最新文章
- 计算机程序的思维逻辑 (60) - 随机读写文件及其应用 - 实现一个简单的KV数据库
- 绿色通道(codevs 3342)
- Ruby(rails)win环境下安装
- ORACLE分页查询SQL语法——最高效的分页
- dp和px转换
- hdu5536 字典树xor
- 查找文件并执行的shell命令
- 为学Linux 我看了这些书
- 佳佳的魔杖 (vijos 1283)
- 第六章_PHP数组(二)
- IT项目技术建议书核心内容
- 铁通、长宽网络支付时“签名失败”问题分析及解决方案 [88222001]验证签名异常:FAIL[20131101100002-142]
- java web中jsp连接mysql数据库 以及数据库连接池的使用
- java.nio分析软件包(三)---Charset理解力
- 关于binary log那些事——认真码了好长一篇
- 移动端二三事【三】:transform的注意事项
- GO开发:用go写个日志监控系统
- 读《图解HTTP》有感-(确认访问用户身份的认证)
- 1.1使用java数组,并开始封装我们自己的数组
- ThinkPHP V5.0 正式版发布