Set UIView Border Color or width in swift using @IBInspectable

1k Views Asked by At
@IBDesignable extension UIView {
    @IBInspectable var borderColor: UIColor? {
        set {
            layer.borderColor = newValue?.cgColor
        }
        get {
            guard let color = layer.borderColor else {
                return nil
            }
            return UIColor(cgColor: color)
        }
    }
}

  @IBInspectable var borderWidth: CGFloat {
        set {
            layer.borderWidth = newValue
        }
        get {
            return layer.borderWidth
        }
    }

By using this code i can set the border color or width of UIView. But i want to set the individual borders like(Top, Bottom, left or right) color or width by using @IBInspectable. How can i do this?

0

There are 0 best solutions below