改变导航栏title字体的大小和颜色

方法一:自定义视图的方法

就是在导航向上添加一个titleView,可以使用一个label,再设置label的背景颜色透明,字体什么的设置就很简单了。

//自定义标题视图

UILabel *titleLabel = [[UILabel
alloc] initWithFrame:CGRectMake(,
, , )]; titleLabel.backgroundColor = [UIColor
grayColor]; titleLabel.font = [UIFont
boldSystemFontOfSize:]; titleLabel.textColor = [UIColor
greenColor]; titleLabel.textAlignment =
NSTextAlignmentCenter; titleLabel.text =
@"新闻"; self.navigationItem.titleView = titleLabel;

方法二:在默认显示的标题中直接修改文件的大小和颜色也是可以的

[self.navigationController.navigationBar setTitleTextAttributes:

@{NSFontAttributeName:[UIFont systemFontOfSize:],

NSForegroundColorAttributeName:[UIColor redColor]}];
上一篇:ytu 1937:查找最大元素(水题)


下一篇:mysql设置时区方法