IOS修改导航栏状态和导航栏标题颜色,背景图片

//NavigationBar &title 颜色

[self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor redColor],NSFontAttributeName:[UIFont systemFontOfSize:19.0]}]; 

//导航栏状态

self.navigationController.navigationBar.barStyle = UIBarStyleBlack;

//添加导航条背景图片

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"12"] forBarMetrics:UIBarMetricsDefault];

//效果图
在这里插入图片描述

你可能感兴趣的:(IT代码,背景图片)