Can I change the color of the display and UINavigationController buttons?
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.