IOS设置导航栏字体大小及颜色

方法一:

自定义视图,定义一个lable,相关属性在lable里设置

核心方法:

self.navigationItem.titleView = titleLabel;

方法二:用系统方法直接设置

[self.navigationController.navigationBar setTitleTextAttributes:@{

NSFontAttributeName:[UIFont systemFontOfSize:20],

NSForegroundColorAttributeName:WhiteColor

}];

上一篇:动态设置html根字体大小(随着设备屏幕的大小而变化,从而实现响应式)


下一篇:jquery处理json对象