I need a NavigationBar like in the calendar in iOS 7.
I have noticed that the NavigationBar does not have any blur behind it.
when going back from one detail view. It's just the "main" NavigationBar
that is "normal".
Anyone have any idea how to do this?
I have tried to do this:
[self.navigationController.navigationBar setFrame:CGRectMake(0, 0, 320, 88)];
But this would move the title and the buttons down 44px.
I have another idea to add another navigation bar under the navigationController.navigationBar
, but then I have a line under the first navigation bar. Anyone knows how to remove this?
Thanks!