Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set the Navigation Bar Color of the Tab Bar Configure Menu

removed dead ImageShack link

As you can see the view I need to change is the provided view to customize the tabbar order. I want to change the color of the navigation bar (displaying "Konfigurieren" which means "Configure"), I already found out how to change the color of the "More"-Navigation Controller, but not this one. Can anybody help me with that?

like image 558
gabtub Avatar asked Sep 10 '09 09:09

gabtub


People also ask

How do I change the navigation bar color in swift 5?

navigationController. navigationBar. barTintColor = UIColor. newBlueColor() and of course this just changes the colour of the navigation bar of the view controller that the code is within.


1 Answers

I think what you are looking for is this (to do when you create your navigation controller, typically in your app delegate):

UINavigationController *navigationController; ... navigationController.navigationBar.tintColor = [UIColor blackColor]; 
like image 193
Zoran Simic Avatar answered Sep 24 '22 15:09

Zoran Simic