为什么我的tabbar是用灰色矩形渲染的?

时间:2017-11-27 15:09:01

标签: ios objective-c xcode

enter image description here

// Tabbar
// Icon inactive
[[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor darkGrayColor]} forState:UIControlStateNormal];
// Icon active
[[UITabBar appearance] setTintColor:PRIMARY_COLOR];
// Text active
[[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: PRIMARY_COLOR} forState:UIControlStateSelected];
// Background
[[UITabBar appearance] setBarTintColor:WHITE_COLOR];
// Over View YES/NO
[[UITabBar appearance] setTranslucent:NO];

我在文字和图标周围有一个灰色的矩形。 为什么?我该死的错误在哪里?

enter image description here

1 个答案:

答案 0 :(得分:1)

经过讨论,我们发现@CeccoCQ使用了UIView的另一个设置。这使得每个视图都具有自定义背景颜色(在图像中,它是灰色)。

[[UIView appearance] setBackgroundColor:WINDOW_BACKGROUND_COLOR];

要解决此问题,请删除此自定义设置,一切正常。