繁体   English   中英

iOS 6透明标签栏可能吗?

[英]iOS 6 Transparent Tabbar possible?

我在我的应用程序中使用情节提要,我想在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中却没有。

iOS 6中是否可以具有“透明”标签栏背景?

提前致谢。

您可以使用UITabBar色调颜色属性

[[UITabBar appearance] setTintColor:[[UIColor alloc] initWithRed:0 green:0 blue:0 alpha:0.5]];

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM