我有一个标签栏控制器作为根控制器。在其第一个选项卡中,我有一个包含未分组表格视图的导航控制器
屏幕截图位于 - http://sankalplabs.files.wordpress.com/2011/04/screen-shot-2011-04-05-at-11-17-10-am.png
(因为我是这个论坛的新手,不允许我上传图片)
现在我想改变颜色&标题“智能分析”的背景。我尝试过使用标签&把它放在标题上。但它没有奏效。这样做的方法是什么?
答案 0 :(得分:2)
self.navigationController.tintColor = [UIColor greenColor];
答案 1 :(得分:0)
尝试使用titleView
UINavigationItem
属性
@property(nonatomic, retain) UIView *titleView
可以在UIViewController
继承的类中访问,如下所示。
self.navigationItem.titleView = myOwnLabel;
相关SO帖子
Changing the Title View of a UINavigationController UIViewController in Interface Builder
答案 2 :(得分:0)
use this
self.navigationController.navigationBar.tintColor = [UIColor greenColor];