iOS 改变导航条的 导航条的按钮颜色 标题颜色 字体大小
2017-06-25 本文已影响0人
GrayMantis
//按钮的颜色
[self.navigationBar setTintColor:[UIColor whiteColor]];
//标题颜色
[self.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:16]}];
//背景颜色
self.navigationBar.barTintColor = [UIcolor redColor];