答案 0 :(得分:1)
您需要将视图的边框颜色设置为透明。
yourview.layer.borderColor = UIColor.clearColor()
这应该有用。
答案 1 :(得分:0)
尝试使用此代码。 (91,158,236)是导航栏的颜色。
yourview.layer.borderColor = UIColor(red: 91.0 / 255, green: 158.0 / 255, blue: 236.0 / 255, alpha: 1.0).CGColor
对于borderWidth为4.0的导航栏中包含的红色视图,它将产生类似
的结果希望这会有所帮助。
答案 2 :(得分:0)
尝试使用0
设置视图的边框宽度O(1)
答案 3 :(得分:0)
更新Swift 3 +
yourview.layer.borderColor = UIColor.clear.cgColor