Change the color of the buttons in the UINavigationController view and buttons (for example, Back)?

Can I change the color of the display and UINavigationController buttons?

+6
ios objective-c xcode uinavigationcontroller
source share
1 answer

You can change the color of the navigation bar with:

UINavigationBar *bar = [self.navigationController navigationBar]; [bar setTintColor:[UIColor redColor]]; 

The buttons will then bring up this color.

+8
source share

All Articles