设置状态栏颜色 字体

- (UIStatusBarStyle)preferredStatusBarStyle{
return UIStatusBarStyleLightContent;
}
// 设置状态栏颜色
// 设置导航栏颜色
[self.navigationBar setBarTintColor:[UIColor colorWithRed:-0.0 green:147/255.0 blue:137/255.0 alpha:1.0]];
// 设置导航栏字体颜色
[self.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], NSForegroundColorAttributeName, nil]];

浙公网安备 33010602011771号