views:

265

answers:

2

Hey.

Is it possible to make a UITabBar look like a UIToolBar, while maintaining its UITabBar-functionallity? Bottom to top

Make the UITabBar (bottom) look like the UIToolBar (top).

Thank you.

In addition to my question, I want to know how I can change the backgroundcolor of my tabBar. Is is possible? Does anybody have a library that subclasses the TabBar and changes its color?

A: 

You might use images that look like toolbar buttons...

Have I understood your question correctly?
You want to change the look of tab bar's items so they will look like toolbar items?

Michael Kessler
Well, actually I just want to be able to change the color of the tab-bar… I know the UIToolBar lets you change its background-color, so I thought that might be the way to go.
Emil
+2  A: 

Instead of making the UITabBar look like a UIToolBar, I would instead try making a UIToolBar have the functionality of a UITabBar- e.g. pressing on the buttons opens different subviews. Then, you could set the background color of the UIToolBar (it's actually listed as "Tint" in the properties).

Chromium