Search code examples
uinavigationbarios7xcode5

Letting the Navigationbar overlap the Statusbar in iOS 7


I want to make an app, which uses a navigationbar, but just for showing the title and some buttons (it is using a vie container). I want the navigation bar to "fusion" with the status bar, like this

Navigation Bar and Status Bar

But when I use a generic view controller and drag a navigation bar in it just looks as this:

Without

Is there a way to do this?


Solution

  • I've found a solution for this specific problem. Set the navigation bar's translucent property to NO:

     self.navigationController.navigationBar.translucent = NO;