Skip to content

Instantly share code, notes, and snippets.

View gabovanlugo's full-sized avatar

Gabo Lugo gabovanlugo

View GitHub Profile
@gabovanlugo
gabovanlugo / CustomButton.swift
Created February 24, 2016 17:29 — forked from soggybag/CustomButton.swift
Custom Designable, Inspectable button with border and corner radius.
import UIKit
@IBDesignable
class CustomButton: UIButton {
@IBInspectable var borderColor: UIColor? = UIColor.clearColor() {
didSet {
layer.borderColor = self.borderColor?.CGColor
}
}
@IBInspectable var borderWidth: CGFloat = 0 {