iOS把所有界面的状态栏的字体颜色都设置为白色

第一步:在info.plist中添加一个字段:View controller-based status bar appearance 设置为NO


第二步:在一个所有界面都继承的父类里添加:

#define IOS7_OR_LATER [[[UIDevice currentDevice]systemVersion] floatValue] >=7.0

if (IOS7_OR_LATER

{ //判断是否是IOS7

  [[UIApplicationsharedApplication]setStatusBarStyle:UIStatusBarStyleLightContentanimated:NO];

}


你可能感兴趣的:(ios,状态栏)