如何在ios中创建透明tabbar

时间:2014-11-26 07:40:57

标签: ios iphone xcode

在我的iOS应用中,我使用UItabbar。我想将透明色设置为tabbar。如何创建透明的tabbar

3 个答案:

答案 0 :(得分:1)

将TabBar的色调颜色设置为clearColor。 代码1:

 [[self tabBar] setTintColor:[UIColor clearColor]];

码2:

self.tabBarController.tabBar.barTintColor = [UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:1.0];
self.tabBarController.tabBar.translucent = NO;

你可以使用其中的任何一个。

答案 1 :(得分:0)

您需要创建一个UIVIEW并设置其不透明度/ alpha值或仅清除背景颜色。然后你需要在UITabBar中插入视图

请参阅示例

的链接

How to get a fully transparent TabBar in UITabBarController

答案 2 :(得分:0)

self.tabBarController.tabBar.barTintColor = [UIColor colorWithRed:1.0 green:0.0 blue:0.0 alpha:1.0]; self.tabBarController.tabBar.translucent = NO;