CustomView.swift 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. //
  2. // CustomView.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 12/08/21.
  6. //
  7. import Foundation
  8. import UIKit
  9. @IBDesignable
  10. class CustomView: UIView{
  11. @IBInspectable var borderWidth: CGFloat = 0.0{
  12. didSet{
  13. self.layer.borderWidth = borderWidth
  14. }
  15. }
  16. @IBInspectable var cornerRadius: CGFloat = 0.0{
  17. didSet{
  18. self.layer.cornerRadius = cornerRadius
  19. }
  20. }
  21. @IBInspectable var shadowOffset: CGSize{
  22. get{
  23. return self.layer.shadowOffset
  24. }
  25. set{
  26. self.layer.shadowOffset = newValue
  27. }
  28. }
  29. @IBInspectable var shadowColor: UIColor{
  30. get{
  31. return UIColor(cgColor: self.layer.shadowColor!)
  32. }
  33. set{
  34. self.layer.shadowColor = newValue.cgColor
  35. }
  36. }
  37. @IBInspectable var shadowRadius: CGFloat{
  38. get{
  39. return self.layer.shadowRadius
  40. }
  41. set{
  42. self.layer.shadowRadius = newValue
  43. }
  44. }
  45. @IBInspectable var shadowOpacity: Float{
  46. get{
  47. return self.layer.shadowOpacity
  48. }
  49. set{
  50. self.layer.shadowOpacity = newValue
  51. }
  52. }
  53. @IBInspectable var borderColor: UIColor = UIColor.clear {
  54. didSet {
  55. self.layer.borderColor = borderColor.cgColor
  56. }
  57. }
  58. override func prepareForInterfaceBuilder() {
  59. super.prepareForInterfaceBuilder()
  60. }
  61. }
  62. @IBDesignable
  63. public class Gradient: UIView {
  64. @IBInspectable var startColor: UIColor = .black { didSet { updateColors() }}
  65. @IBInspectable var endColor: UIColor = .white { didSet { updateColors() }}
  66. @IBInspectable var startLocation: Double = 0.05 { didSet { updateLocations() }}
  67. @IBInspectable var endLocation: Double = 0.95 { didSet { updateLocations() }}
  68. @IBInspectable var horizontalMode: Bool = false { didSet { updatePoints() }}
  69. @IBInspectable var diagonalMode: Bool = false { didSet { updatePoints() }}
  70. override public class var layerClass: AnyClass { CAGradientLayer.self }
  71. var gradientLayer: CAGradientLayer { layer as! CAGradientLayer }
  72. func updatePoints() {
  73. if horizontalMode {
  74. gradientLayer.startPoint = diagonalMode ? .init(x: 1, y: 0) : .init(x: 0, y: 0.5)
  75. gradientLayer.endPoint = diagonalMode ? .init(x: 0, y: 1) : .init(x: 1, y: 0.5)
  76. } else {
  77. gradientLayer.startPoint = diagonalMode ? .init(x: 0, y: 0) : .init(x: 0.5, y: 0)
  78. gradientLayer.endPoint = diagonalMode ? .init(x: 1, y: 1) : .init(x: 0.5, y: 1)
  79. }
  80. }
  81. func updateLocations() {
  82. gradientLayer.locations = [startLocation as NSNumber, endLocation as NSNumber]
  83. }
  84. func updateColors() {
  85. gradientLayer.colors = [startColor.cgColor, endColor.cgColor]
  86. }
  87. override public func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
  88. super.traitCollectionDidChange(previousTraitCollection)
  89. updatePoints()
  90. updateLocations()
  91. updateColors()
  92. }
  93. }