扫码关注官方订阅号
如题,iOS怎样像大众点评网那样,设置status bar 的颜色?target中的status bar 的tint color设置不管用,偶试过
闭关修行中......
一般来说默认情况的status bar颜色是根据你的NavBar的tint color自动产生的。
下面有一种方法可以更改Status bar Color
1.再工程的Summary中设置Status Bar -> Style 为 Black Transculent
2.然后再AppDelegate.m中修改application: didFinishLaunchingWithOptions:方法即可
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window.backgroundColor=[UIColor yellowColor]; return YES; }
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
一般来说默认情况的status bar颜色是根据你的NavBar的tint color自动产生的。
下面有一种方法可以更改Status bar Color
1.再工程的Summary中设置Status Bar -> Style 为 Black Transculent
2.然后再AppDelegate.m中修改application: didFinishLaunchingWithOptions:方法即可