我在我的应用程序中使用storyboard,我想在ios 6中使用透明Tabbar。
我做的是当我在此处添加此代码时,我有一个标签栏图像,其中有一些透明度,
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
...
[[UITabBar appearance] setBackgroundImage:[UIImage imageNamed:@"TabImg.png"]];
[[UITabBar appearance] setBackgroundColor:[UIColor clearColor]];
...
...
}
它显示iOS 7中的Transperancy,但不显示iOS 6中的Transperancy。
iOS 6中是否可以使用透明标签栏背景?
提前致谢。
答案 0 :(得分:0)
您可以使用 UITabBar 的色调属性
[[UITabBar appearance] setTintColor:[[UIColor alloc] initWithRed:0 green:0 blue:0 alpha:0.5]];