1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //
- // 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()
- // }
-
- }
|