系统默认颜色是蓝色的 视觉效果非常难看
在push进的ViewController中写
//修改UINavigationController的文字颜色
self.navigationController.navigationBar.tintColor=[UIColor whiteColor];
//修改UINavigationController的前景颜色
self.navigationController.navigationBar.barTintColor=[UIColor colorWithRed:/256.0 green:/256.0 blue:/256.0 alpha:];
//修改UINavigationController的titleView的文字 字体 文字颜色
UILabel* title=[[UILabel alloc]initWithFrame:CGRectMake(, , , )];
title.backgroundColor=[UIColor clearColor];
title.text=@"发现音乐";
title.textAlignment=;
title.font=[UIFont systemFontOfSize: weight:1.0];
title.textColor=[UIColor whiteColor];
self.navigationItem.titleView=title;