我想将标签栏图像设置为清晰img没有任何颜色或任何背景只显示标签栏底部我尝试了很多代码,但它仍然显示我白色背景
这是我在appdelegate中的代码
UITabBar.appearance().shadowImage = UIImage()
UITabBar.appearance().barTintColor = UIColor.clear
UITabBar.appearance().tintColor = UIColor.HalaColor
UITabBar.appearance().layer.borderWidth = 0.50
UITabBar.appearance().clipsToBounds = true
答案 0 :(得分:1)
使用以下几行,你应该得到你想要的效果:
UITabBar.appearance().barTintColor = UIColor.clear
UITabBar.appearance().shadowImage = UIImage()
UITabBar.appearance().backgroundImage = UIImage()