I have made the Navigation bar transparent, which is great. Yet, now when I segue to the messages app within my app, the navigation bar is transparent, too, which looks really weird. The messages are blocked only partially and show through the top.
Here's what I did in the appDelegate
in order to make the navigation bar disappear:
[[UINavigationBar appearance] setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setShadowImage:[UIImage new]];
As you can imagine, not having the nav bar in the messaging apps is strange. How do I change it back for this view?