I have a Navigation Bar created via code. When I change it's tintColor the bar is bad. Hoverer the color is plain and not iOS style. Can I change this? Thanks
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:frontViewController];
navigationController.navigationBar.tintColor = [UIColor colorWithRed:0 green:166 blue:208 alpha:1];
This is because the method call to UIColor you are making expects float values between 0.0 and 1.0, whereas you are passing in straight RBG values as ints:
This will work: