【发布时间】:2014-10-09 13:19:09
【问题描述】:
我正在尝试使我的 tabBar 透明,我已经搜索过,但我发现的只是导致部分透明和不完全透明的 tabBar 的文章,有些是针对 IOS 5 等的。
我想像 Sketch 3 中看到的那样完成这个:
最简单的方法是什么?
我想过这样做:
// Make the tabBar transparent
self.tabBarController.tabBar.backgroundColor = [UIColor clearColor];
self.tabBarController.tabBar.translucent = YES;
但结果并不完美:
非常感谢帮助!:)
真诚地, 埃里克
更新
// Make the tabBar transparent
[[UITabBar appearance] setBarTintColor:[UIColor clearColor]];
self.tabBarController.tabBar.translucent = YES;
【问题讨论】:
标签: ios objective-c uitabbarcontroller uitabbar transparent