ios7 - UIRectEdgeNone makes NavigationBar and Tabbar darker -


i have ios 7 app has navigationcontroller inside tabbarcontroller. customize bars background color

[[uinavigationbar appearance] setbartintcolor:[uicolor bluecolor]]; [[uitabbar appearance] setbartintcolor:[uicolor bluecolor]]; 

it runs fine. if there's viewcontroller wants not covered bars, this

self.edgesforextendedlayout = uirectedgetop; 

which means viewcontroller not want covered tabbar. makes tabbar darker normal

i think because use custom color bars. how fix ?

it means there's nothing show below translucent tab bar. set tab bar translucent property no


Comments

Popular posts from this blog

What can cause "Required Package 'IndyCore' not found" when compiling a Delphi 2010 project? -

Change the color of an oval at click in Java AWT -