tabbar背景颜色变化
2020-06-18 本文已影响0人
三岁就很乖
0、
图1.png
1、
图2.png
![](https://img.haomeiwen.com/i851988/58f082b7ff323587.png)
![](https://img.haomeiwen.com/i851988/7a0706f5c88ccda3.png)
图1背景色是默认的,我想修改为纯白色,好多人用的 [tabBarAppearance setBackgroundImage:img];
但是我用这个方法不管用
最终我是用iOS13的UITabBarAppearance
修改成功
UITabBarAppearance *tabBarAppearance = [self.tabBar.standardAppearance copy];
[tabBarAppearance setBackgroundColor:[UIColor whiteColor]];