Nate
Nate

Reputation: 13

Translucent Navigation Bar in iOS 7

I have been trying to figure this out all day. How do I change the transparency level for the UINavigationBar on iOS 7?

This is what I have tried (with no success):

Thank you very much.

Edit: I am trying to achieve something like this.

Upvotes: 0

Views: 502

Answers (1)

Holly
Holly

Reputation: 5290

I don't believe it to be possible to make the bar opaque anymore. The link you added does not have an opaque bar either. It is translucent with what looks to be a blue barTintColor.

What I suspect you are trying to do is have your content not covered by the translucent bar. In that case, look at UIViewController edgesForExtendedLayout. You probably want self.edgesForExtendedLayout = UIRectEdgeNone;.

Upvotes: 1

Related Questions