IOS导航器 + 表控制器

1. 设置标题栏(顶部)颜色

在表控制器中

e.g -(void)viewDidLoad中添加

self.navigationController.navigationBar.barTintColor = [UIColor redColor];

将标题栏设为红色。

 

2. 设置标题字体颜色

    self.navigationController.navigationBar.titleTextAttributes = [NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:NSForegroundColorAttributeName];

 将标题字体设为白色

 

你可能感兴趣的:(ios)