gpt4 book ai didi

iphone - 如何在 UITabBarController 中获得完全透明的 TabBar

转载 作者:行者123 更新时间:2023-12-01 16:48:03 51 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





UITabBar fully transparent

(1 个回答)


8年前关闭。




我花了过去几个小时试图让 UITabBarController 中的 TabBar 完全透明(背景清晰)。我使用了 UITabBarController 的自定义子类,并设法更改了 tintColor、alpha,但背景颜色肯定仍然是 IB 中定义的颜色。
谢谢你的帮助,我快疯了……

最佳答案

这是实现这一目标的一种方法。

CGRect frame = CGRectMake(0.0, 0.0, 320, 48);//Setting a Frame.

myTabView = [[UIView alloc] initWithFrame:frame];//Making Tab View

// not supported on iOS4
UITabBar *tabBarr = [self.tabBar tabBar];
if ([tabBarr respondsToSelector:@selector(setBackgroundImage:)])
{
// set it just for this instance
[tabBarr setBackgroundImage:[UIImage imageNamed:@"hot-1.png"]];


// set for all
// [[UITabBar appearance] setBackgroundImage: ...
}
else
{
// ios 4 code here
//[tabBarr setBackgroundColor:c];
}

//[myTabView setBackgroundColor:c];//Setting Color Of TaBar.

[myTabView setAlpha:0.8];//Setting Alpha of TabView.

[[self.tabBar tabBar] insertSubview:myTabView atIndex:0];//Inserting Tab As SubView.

这是一个教程的链接,我发现在更改标签栏的背景方面非常有用。您可以使用代码并根据自己的喜好对其进行定制。

http://ios-blog.co.uk/tutorials/how-to-customize-the-tab-bar-using-ios-5-appearance-api/

编辑:

至于将标签栏的背景颜色设置为透明或清晰的颜色,您有两种方法。一个是我解释的图像,你不喜欢。另一种是在其 super View 中设置标签栏的背景。沿着以下路线。
tabBar.superview.backgroundColor = [UIColor clearColor];

这样您就可以到达标签栏后面并将黑色背景更改为您想要的任何内容。

编辑1:

抱歉延迟添加 ios 7 的解决方案。以下是您需要更改 ios 7 中标签栏背景颜色的方法。

只需在您的 ViewDidLoad 中添加以下代码行方法,它会变魔术。
[self.tabBarController.tabBar setBackgroundColor:[UIColor greenColor]];

希望这可以帮助。:)

关于iphone - 如何在 UITabBarController 中获得完全透明的 TabBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18413352/

51 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com