iOS 10:自定义UITabBar背景图像在图像顶部生成边框。我该如何删除它?

时间:2017-01-04 17:50:41

标签: swift uitabbarcontroller ios10 uitabbar

任何人都有一个可行的解决方案来摆脱iOS 10中的这个边界?我有一个自定义的UITabBar背景图片。

我尝试了以下但没有结果:

tabBar.backgroundImage = UIImage(named: "myBackgroundImage.png")
tabBar.shadowImage = nil
tabBar.shadowImage = UIImage()
// i've also tried combinations of this in the storyboard directly

我终于把手举到空中并将酒吧风格设置为“黑色”..这并没有摆脱边界,而是让它变白了。所以它隐藏了它。

thin border at top

4 个答案:

答案 0 :(得分:4)

If you use backgroundImage then shadow line will come so you can try this :

self.tabBar.backgroundImage = UIImage()
self.tabBar.shadowImage = UIImage()
let tabBarView = UIImageView(image: #imageLiteral(resourceName: "YOUR_IMAGE"))
tabBarView.frame = CGRect(x: 0, y: 49 - IMAGEHEIGHT, width: SCREENWIDTH, height: IMAGEHEIGHT)
self.tabBar.addSubview(tabBarView)
self.tabBar.sendSubview(toBack: tabBarView)

It work for me

答案 1 :(得分:0)

试试这个:

tabBar.layer.borderWidth = 0
tabBar.layer.borderColor = .clear

答案 2 :(得分:0)

你确定图像本身没有边框吗?

答案 3 :(得分:0)

这发生在我身上,因为我的图像高于49的默认标签栏。确保我的背景图像高度正好为49,这条线消失了(96为2x,147为3x)。

希望它有所帮助!