CHIPageControlAji.swift 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. //
  2. // CHIPageControlAji.swift
  3. // CHIPageControl ( https://github.com/ChiliLabs/CHIPageControl )
  4. //
  5. // Copyright (c) 2017 Chili ( http://chi.lv )
  6. //
  7. //
  8. // Permission is hereby granted, free of charge, to any person obtaining a copy
  9. // of this software and associated documentation files (the "Software"), to deal
  10. // in the Software without restriction, including without limitation the rights
  11. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. // copies of the Software, and to permit persons to whom the Software is
  13. // furnished to do so, subject to the following conditions:
  14. //
  15. // The above copyright notice and this permission notice shall be included in
  16. // all copies or substantial portions of the Software.
  17. //
  18. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. // THE SOFTWARE.
  25. import UIKit
  26. open class CHIPageControlAji: CHIBasePageControl {
  27. fileprivate var diameter: CGFloat {
  28. return radius * 2
  29. }
  30. fileprivate var inactive = [CHILayer]()
  31. fileprivate var active = CHILayer()
  32. required public init?(coder aDecoder: NSCoder) {
  33. super.init(coder: aDecoder)
  34. }
  35. public override init(frame: CGRect) {
  36. super.init(frame: frame)
  37. }
  38. override func updateNumberOfPages(_ count: Int) {
  39. inactive.forEach { $0.removeFromSuperlayer() }
  40. inactive = [CHILayer]()
  41. inactive = (0..<count).map {_ in
  42. let layer = CHILayer()
  43. self.layer.addSublayer(layer)
  44. return layer
  45. }
  46. self.layer.addSublayer(active)
  47. setNeedsLayout()
  48. self.invalidateIntrinsicContentSize()
  49. }
  50. override open func layoutSubviews() {
  51. super.layoutSubviews()
  52. let floatCount = CGFloat(inactive.count)
  53. let x = ceil((self.bounds.size.width - self.diameter*floatCount - self.padding*(floatCount-1))*0.5)
  54. let y = ceil((self.bounds.size.height - self.diameter)*0.5)
  55. var frame = CGRect(x: x, y: y, width: self.diameter, height: self.diameter)
  56. active.cornerRadius = self.radius
  57. active.backgroundColor = (self.currentPageTintColor ?? self.tintColor)?.cgColor
  58. active.frame = frame
  59. inactive.enumerated().forEach() { index, layer in
  60. layer.backgroundColor = self.tintColor(position: index).withAlphaComponent(self.inactiveTransparency).cgColor
  61. if self.borderWidth > 0 {
  62. layer.borderWidth = self.borderWidth
  63. layer.borderColor = self.tintColor(position: index).cgColor
  64. }
  65. layer.cornerRadius = self.radius
  66. layer.frame = frame
  67. frame.origin.x += self.diameter + self.padding
  68. }
  69. update(for: progress)
  70. }
  71. override func update(for progress: Double) {
  72. guard let min = inactive.first?.frame,
  73. let max = inactive.last?.frame,
  74. numberOfPages > 1,
  75. progress >= 0 && progress <= Double(numberOfPages - 1) else {
  76. return
  77. }
  78. let total = Double(numberOfPages - 1)
  79. let dist = max.origin.x - min.origin.x
  80. let percent = CGFloat(progress / total)
  81. let offset = dist * percent
  82. active.frame.origin.x = min.origin.x + offset
  83. }
  84. override open var intrinsicContentSize: CGSize {
  85. return sizeThatFits(CGSize.zero)
  86. }
  87. override open func sizeThatFits(_ size: CGSize) -> CGSize {
  88. return CGSize(width: CGFloat(inactive.count) * self.diameter + CGFloat(inactive.count - 1) * self.padding,
  89. height: self.diameter)
  90. }
  91. }