图1背景色是默认的,我想修改为纯白色,好多人用的 [tabBarAppearance setBackgroundImage:img];
但是我用这个方法不管用
最终我是用iOS13的UITabBarAppearance
修改成功
UITabBarAppearance *tabBarAppearance = [self.tabBar.standardAppearance copy];
[tabBarAppearance setBackgroundColor:[UIColor whiteColor]];
网友评论