Adam
Adam

Reputation: 9049

UITabBar opacity and overlap content

I've added a tab bar controller to my app delegate. In IB, I adjusted the alpha property and unchecked opaque, however in the simulator I get transparency over a white background, even though there should be content below it.

Perhaps, the containing View needs to be resized to the full dimensions of the screen? I'm using a nav controller with a tableview in this tab bar item.

Upvotes: 1

Views: 558

Answers (1)

John Heaton
John Heaton

Reputation: 300

What? You want your UITabBar to be translucent? A UITabBar is not a subclass of UINavigationBar, therefore the content from any view controllers the tab controller manages will not appear under the tab bar, if that's what you're trying to do.

Upvotes: 1

Related Questions