标签:
//导航条背景颜色
self.navigationController.navigationBar.barTintColor = [UIColor blueColor];
//导航条上面控件颜色
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
//设置系统导航条的title字体大小和颜色
[self.navigationController.navigationBar setTitleTextAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:17],NSForegroundColorAttributeName:[UIColor whiteColor]}];
老是记不住。。
标签:
原文地址:http://www.cnblogs.com/wycstudy/p/5584193.html