标签:
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent animated:NO];
4.title颜色
[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], NSForegroundColorAttributeName, nil]];
5.背景颜色
[self.navigationController.navigationBar setBarTintColor:[UIColor colorWithRed:0.0/255.0 green:184.0/255.0 blue:212.0/255.0 alpha:1.0]];
标签:
原文地址:http://www.cnblogs.com/qyfeng009/p/5445544.html