Skip to content

Instantly share code, notes, and snippets.

@sweetdreamsBerlin
sweetdreamsBerlin / DesignableButton.swift
Last active February 19, 2018 22:16
Designable Button: Border, Corner RadiusDesign, Button Image Insets, Gradient Color, Shadow ...
import UIKit
@IBDesignable
class DesignableButton: UIButton {
@IBInspectable var borderColor: UIColor = .white{
didSet{
layer.borderColor = borderColor.cgColor
}