修改iOS导航栏标题的字体颜色和大小以及导航栏的背景图片

修改iOS中导航栏标题的字体大小和字体颜色代码如下:

前一个参数设置字体的大小,后一个参数设置字体的颜色


<span style="font-size:14px;">[self.navigationController.navigationBar setTitleTextAttributes:

@{NSFontAttributeName:[UIFont systemFontOfSize:19],

NSForegroundColorAttributeName:[UIColor redColor]}];</span>

设置导航栏的背景图片代码:

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"NavBackground.png"] forBarMetrics:0];


你可能感兴趣的:(ios,ios,代码,图片,字体,导航栏)