所以我的标签栏中有两个标签栏项目,每个项目都有一个带圆角的图像,圆角位于它们相遇的位置,如图所示。我正在尝试将标签栏的背景图像设置为透明而不是您可以看到的黑色,但到目前为止,我一直遇到一些不想透明的视图。这是我目前正在使用的:
[[UIView appearanceWhenContainedIn:[UITabBar class], nil] setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"transparent"]]];
我也尝试了下一段代码,但没有成功。
[tabBar setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"transparent"]]];
for(UIView *v in tabBar.subviews)
{
if(v.class == NSClassFromString(@"_UITabBarBackgroundView")||v.class == NSClassFromString(@"UITabBarButton"))
{
[v setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"transparent"]]];
}
for(UIView *vc in v.subviews)
{
[vc setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"transparent"]]];
}
}
有什么建议么?如何找到该视图并使其透明?