ios怎么让背景图片不遮住电源部分

如图,我希望这一行是黑色的,电源标志显示出来,或者让他的颜色编程白色图片说明

就是让WIFI标志和电源标志以及上面的字变成白色,背景图片是黑色的

 状态栏改成黑底白字


 在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;
    }

你可以设置背景为

 UIColor.clearColor

显示的时候整体下移下不就可以么,你现在显示是占全屏显示吧