Here is the n00b question, but I can't seem to allow reading my books and notes:
I am using a navigation control and I cannot understand why my code does not set the hue color for it.
In my application delegation implementation file under applicationDidFinishLaunching: ::
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; rootViewController *rootView = [[rootViewController alloc] initWithNibName:@"rootViewController" bundle:nil]; self.navController = [[UINavigationController alloc] initWithRootViewController:rootView]; self.navController.navigationBar.tintColor = [UIColor colorWithRed:20/255 green:44/255 blue:86/255 alpha:1];
navController initializes only thin, but with black color.
source share