I would like to create a UINavigationBar
that doesn't has colored background.
I tried
self.navigationController.navigationBar.backgroundColor = [UIColor clearColor];
and
self.navigationController.navigationBar.backgroundColor = nil;
but couldn't solve the problem. I also tried to set the same color for the nav bar that I use for the self.view.backgroundColor
, but I couldn't override the original one. (I'm using Storyboard maybe that causes the problem, but not sure, because I can manipulate the tintColor
with code.)