Hello,
I created UINavigationBar, and I try to change the color bar to aqua color (As in Nib file)
UINavigationBar
How do I do it?
try this,
UINavigationController *navigationController; UIColor* aqua = [UIColor colorWithRed:0 green:1 blue:1 alpha:1]; navigationController.navigationBar.tintColor = [UIColor aqua];
regards