问题描述
解决方案
状态栏改成黑底白字
在info.plist中找到 View controller-based status bar appearance 改为NO
在appdelegete中附上 if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
self.window.frame = CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent animated:NO];
}
解决方案二:
- (UIStatusBarStyle)preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}
状态栏颜色显示为白色
解决方案三:
- (UIStatusBarStyle)preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}
解决方案四:
- (UIStatusBarStyle)preferredStatusBarStyle {
return UIStatusBarStyleLightContent;
}
解决方案五:
你可以设置背景为
UIColor.clearColor
解决方案六:
iOS 中背景图片的设置
解决方案七:
显示的时候整体下移下不就可以么,你现在显示是占全屏显示吧
解决方案八:
就是让WIFI标志和电源标志以及上面的字变成白色,背景图片是黑色的
时间: 2024-12-18 23:47:22