0
我已在Xcode 4.2和Snow Leopard iPhone應用程序中,我已通過實施下面的代碼的TabBar背景顏色和IOS 5
CGRect frame = CGRectMake(0.0, 0.0, self.view.bounds.size.width, 48);
UIView *v = [[UIView alloc] initWithFrame:frame];
[v setBackgroundColor:[UIColor colorWithRed:1.0f/255.0f green:140.0f/255.0f
blue:131.0f/255.0f alpha:1.0f]];
[[self.tabBarController tabBar] insertSubview:v atIndex:0];
[v release];
self.navigationController.navigationBar.tintColor = [UIColor colorWithRed:1.0f/255.0f
green:125.0f/255.0f blue:131.0f/255.0f alpha:1.0f];
它是設置在導航欄和標籤欄背景顏色工作正常,但現在如果我在ios 5和xcode 4.2中運行這個應用程序,導航欄顏色設置但tabbar背景顏色不設置
如何在ios 5中設置tabbar的背景顏色?如果有人知道請幫助我。
非常感謝。
http://stackoverflow.com/questions/7779736/how-to-set-image-background-to-uitabbarcontroller- ios-5 –
它工作與否? –
是的,它正在工作......非常感謝... –