// // CustomButton.swift // Learn Genie // // Created by Suraj Kumar Mandal on 01/09/21. // import Foundation import UIKit @IBDesignable class CustomButton: UIButton{ @IBInspectable var maskToBounds: Bool = true{ didSet{ self.layer.masksToBounds = true } } @IBInspectable var borderWidth: CGFloat = 0.0{ didSet{ self.layer.borderWidth = borderWidth } } @IBInspectable var cornerRadius: CGFloat = 0.0{ didSet{ self.layer.cornerRadius = cornerRadius } } @IBInspectable var shadowOffset: CGSize{ get{ return self.layer.shadowOffset } set{ self.layer.shadowOffset = newValue } } @IBInspectable var shadowColor: UIColor{ get{ return UIColor(cgColor: self.layer.shadowColor!) } set{ self.layer.shadowColor = newValue.cgColor } } @IBInspectable var shadowRadius: CGFloat{ get{ return self.layer.shadowRadius } set{ self.layer.shadowRadius = newValue } } @IBInspectable var shadowOpacity: Float{ get{ return self.layer.shadowOpacity } set{ self.layer.shadowOpacity = newValue } } @IBInspectable var borderColor: UIColor = UIColor.clear { didSet { self.layer.borderColor = borderColor.cgColor } } // override func prepareForInterfaceBuilder() { // // super.prepareForInterfaceBuilder() // } }