CustomButton.swift 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //
  2. // CustomButton.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 01/09/21.
  6. //
  7. import Foundation
  8. import UIKit
  9. @IBDesignable
  10. class CustomButton: UIButton{
  11. @IBInspectable var maskToBounds: Bool = true{
  12. didSet{
  13. self.layer.masksToBounds = true
  14. }
  15. }
  16. @IBInspectable var borderWidth: CGFloat = 0.0{
  17. didSet{
  18. self.layer.borderWidth = borderWidth
  19. }
  20. }
  21. @IBInspectable var cornerRadius: CGFloat = 0.0{
  22. didSet{
  23. self.layer.cornerRadius = cornerRadius
  24. }
  25. }
  26. @IBInspectable var shadowOffset: CGSize{
  27. get{
  28. return self.layer.shadowOffset
  29. }
  30. set{
  31. self.layer.shadowOffset = newValue
  32. }
  33. }
  34. @IBInspectable var shadowColor: UIColor{
  35. get{
  36. return UIColor(cgColor: self.layer.shadowColor!)
  37. }
  38. set{
  39. self.layer.shadowColor = newValue.cgColor
  40. }
  41. }
  42. @IBInspectable var shadowRadius: CGFloat{
  43. get{
  44. return self.layer.shadowRadius
  45. }
  46. set{
  47. self.layer.shadowRadius = newValue
  48. }
  49. }
  50. @IBInspectable var shadowOpacity: Float{
  51. get{
  52. return self.layer.shadowOpacity
  53. }
  54. set{
  55. self.layer.shadowOpacity = newValue
  56. }
  57. }
  58. @IBInspectable var borderColor: UIColor = UIColor.clear {
  59. didSet {
  60. self.layer.borderColor = borderColor.cgColor
  61. }
  62. }
  63. // override func prepareForInterfaceBuilder() {
  64. //
  65. // super.prepareForInterfaceBuilder()
  66. // }
  67. }