带有圆角和白色边框的UIView具有轮廓,如何摆脱轮廓

时间:2019-03-11 10:44:25

标签: ios uiview

我用下面的代码创建了一个红色背景的UIView,一个1pt宽的白色边框。

let myView = UIView(frame: CGRect(x: 100, y: 100, width: 20, height: 20))
self.view.addSubview(myView)
myView.backgroundColor = UIColor.red
myView.layer.borderColor = UIColor.white.cgColor
myView.layer.borderWidth = 1
myView.layer.cornerRadius = 10

但是myView呈现为红色轮廓,如何摆脱它呢?随附了放大的屏幕截图。

Below is the enlarged screenshot

1 个答案:

答案 0 :(得分:0)

这不是您的问题的答案

但是,如果您创建另一个视图并将其作为子视图添加到主视图中,则可以做得更好:

let myView = UIView(frame: CGRect(x: 100, y: 100, width: 20, height: 20))

let redView = UIView(frame: CGRect(x: 0, y: 0, width: 20, height: 20))


redView.backgroundColor = UIColor.red
myView.layer.borderColor = UIColor.white.cgColor
myView.layer.borderWidth = 1
redView.layer.borderColor = UIColor.white.cgColor
redView.layer.borderWidth = 1

myView.addSubview(redView)
self.view.addSubview(myView)

myView.layer.cornerRadius = 10
myView.clipsToBounds = true

结果将是:

enter image description here