修改UINavigationController返回按钮颜色

系统默认颜色是蓝色的 视觉效果非常难看

在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;
上一篇:15个提高编程技巧的JavaScript工具


下一篇:AndroidEclipse里的视图里想添加SDK Manager但是找不到怎么办?