Ios7 无法更改UITabbarcontroller iOS 7的背景色

Ios7 无法更改UITabbarcontroller iOS 7的背景色,ios7,uitabbarcontroller,uiappearance,xcode5.1,Ios7,Uitabbarcontroller,Uiappearance,Xcode5.1,我已经为我的Tabbar创建了UITabbar的子类 这是我的层次结构UIAbbarController->UINavigationController->UIViewController 请看我到目前为止所做的。我正在使用基于窗口的应用程序来处理我的应用程序 -(void)awakeFromNib { // [self setTintColor:[UIColor whiteColor]]; // [self setBarTintColor:[UIColor yellowColor]]; [s

我已经为我的Tabbar创建了UITabbar的子类 这是我的层次结构UIAbbarController->UINavigationController->UIViewController

请看我到目前为止所做的。我正在使用基于窗口的应用程序来处理我的应用程序

-(void)awakeFromNib
{
// [self setTintColor:[UIColor whiteColor]];
// [self setBarTintColor:[UIColor yellowColor]];
 [self setBarTintColor:[UIColor colorWithRed:123/255.0 green:47/255.0 blue:85/255.0 alpha:1]];
 //[self setTintColor:[UIColor colorWithRed:227/255.0 green:180/255.0 blue:204/255.0 alpha:1]];
//[self setBackgroundColor:[UIColor colorWithRed:0.0/255.0 green:0.0/255.0 blue:0.0/255.0 alpha:0.6]];
[self setTranslucent:NO];
}
请帮帮我,我怎样才能摆脱它?有什么建议吗