自定义tabbar问题

在viewWillAppear里面移除了系统的tabbarbutton,但是出现了黑色条

- (void)viewWillAppear:(BOOL)animated

{

[super viewWillAppear:animated];

//移除系统的tabBarButton

for (UIView *tabBarButton in self.tabBar.subviews) {

if ([tabBarButton isKindOfClass:NSClassFromString(@"UITabBarButton") ]) {

[tabBarButton removeFromSuperview];

}

}

}

如图

怎么让这个黑色的view变回透明呢

以上是 自定义tabbar问题 的全部内容, 来源链接: utcz.com/p/184237.html

回到顶部