在swift4中将内边框底部添加到UiView的子类

时间:2018-03-16 10:15:33

标签: uiview uikit swift4 ios11 xcode9

我想在UIView的一个子类(自定义)中添加一个内边框底部,我正在查看是否有UIview的扩展。提前谢谢。

1 个答案:

答案 0 :(得分:0)

        extension UIView {

        func customBorder(){
        CGFloat borderWidth = 2.0f


self.frame = frame.insetBy(dx: -borderWidth, dy: -borderWidth)

        self.layer.borderColor = UIColor.yellowColor.CGColor
        self.layer.borderWidth = borderWidth
    self.clipToBounds = true
        }
        }