barTintColor
This color is made translucent by default unless you set the translucent property to NO.
So why is my code producing an opaque navigation bar?
self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:0/255.0f green:119/255.0f blue:255/255.0f alpha:1.0f];
I tried adding this just in case, but no luck.
self.navigationController.navigationBar.translucent = YES;
Thanks