XF_Segment.swift 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. //
  2. // XF_Segment.swift
  3. // xingchuangke
  4. //
  5. // Created by uen on 2020/6/28.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. public typealias ChooseItemClosure = (_ item: Int) -> Void
  10. class XF_Segment: UIView {
  11. private var chooseItemClosure: ChooseItemClosure?
  12. let lineHeight: CGFloat = 2
  13. let fontSize: UIFont = UIFont.systemFont(ofSize: 14)
  14. var defaultColor: UIColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0)
  15. var selectedColor: UIColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x2094f5, alpha: 1.0)
  16. var selectedIndex = 0
  17. lazy var lineView: UIView = {
  18. let lineView = UIView.init()
  19. lineView.backgroundColor = self.selectedColor
  20. lineView.layer.cornerRadius = 1
  21. return lineView
  22. }()
  23. lazy var scrollView: UIScrollView = {
  24. let scrollView = UIScrollView.init(frame: self.bounds)
  25. scrollView.backgroundColor = UIColor.clear
  26. scrollView.showsVerticalScrollIndicator = false
  27. scrollView.showsHorizontalScrollIndicator = false
  28. return scrollView
  29. }()
  30. var titles: [String]
  31. required init?(coder: NSCoder) {
  32. fatalError("init(coder:) has not been implemented")
  33. }
  34. public init(frame: CGRect, titles: [String], selectedIndex: NSInteger, defaultColor: UIColor, selectedColor: UIColor, chooseItemClosure:@escaping ChooseItemClosure) {
  35. self.titles = titles
  36. self.defaultColor = defaultColor
  37. self.selectedColor = selectedColor
  38. self.chooseItemClosure = chooseItemClosure
  39. self.selectedIndex = selectedIndex
  40. super.init(frame: frame)
  41. setup()
  42. }
  43. func setup() {
  44. self.addSubview(scrollView)
  45. let containerView = UIView.init(frame: self.bounds)
  46. containerView.backgroundColor = UIColor.clear
  47. scrollView.addSubview(containerView)
  48. var allBtnWidth: CGFloat = 0
  49. for i in 0 ..< self.titles.count {
  50. let btn = UIButton.init(type: .custom)
  51. btn.tag = 100 + i
  52. btn.setTitle(titles[i], for: .normal)
  53. btn.setTitleColor(self.defaultColor, for: .normal)
  54. btn.setTitleColor(self.selectedColor, for: .selected)
  55. btn.titleLabel?.font = self.fontSize
  56. containerView.addSubview(btn)
  57. btn.addTarget(self, action: #selector(btnClick), for: .touchUpInside)
  58. if i == self.selectedIndex {
  59. btn.isSelected = true
  60. }
  61. let textSize = titles[i].sizeWithText(font: self.fontSize, size: CGSize.init(width: 3000, height: 50))
  62. btn.frame = CGRect.init(x: allBtnWidth, y: 0, width: textSize.width + 30, height: self.bounds.size.height)
  63. allBtnWidth += (textSize.width + 30)
  64. }
  65. // let textSize = titles[0].sizeWithText(font: self.fontSize, size: CGSize.init(width: 3000, height: 50))
  66. var tits = ""
  67. for i in 0 ..< self.selectedIndex {
  68. tits += self.titles[i]
  69. }
  70. var textSize = tits.sizeWithText(font: self.fontSize, size: CGSize.init(width: 3000, height: 50))
  71. let x: CGFloat = textSize.width + CGFloat(self.selectedIndex) * 30.0
  72. textSize = titles[self.selectedIndex].sizeWithText(font: self.fontSize, size: CGSize.init(width: 3000, height: 50))
  73. lineView.frame = CGRect.init(x: x + 15, y: self.bounds.size.height - 2, width: textSize.width, height: 2)
  74. containerView.addSubview(lineView)
  75. let width = (allBtnWidth > self.bounds.size.width) ? allBtnWidth : self.bounds.size.width
  76. containerView.setSizeWidth(width: width)
  77. scrollView.contentSize = CGSize.init(width: width, height: self.bounds.size.height)
  78. }
  79. @objc func btnClick(sender: UIButton) {
  80. for view in sender.superview!.subviews {
  81. if view.isKind(of: UIButton.self) {
  82. let btn: UIButton = view as! UIButton
  83. if btn.tag == sender.tag {
  84. btn.isSelected = true
  85. } else {
  86. btn.isSelected = false
  87. }
  88. }
  89. }
  90. let index = sender.tag - 100
  91. var tits = ""
  92. for i in 0 ..< index {
  93. tits += self.titles[i]
  94. }
  95. var textSize = tits.sizeWithText(font: self.fontSize, size: CGSize.init(width: 3000, height: 50))
  96. let x: CGFloat = textSize.width + CGFloat(index) * 30.0
  97. textSize = titles[index].sizeWithText(font: self.fontSize, size: CGSize.init(width: 3000, height: 50))
  98. let width: CGFloat = textSize.width
  99. UIView.animate(withDuration: 0.5) {
  100. self.lineView.frame = CGRect.init(x: x + 15, y: self.bounds.size.height - 2, width: width, height: 2)
  101. if x + width + 30 > ScreenWidth {
  102. self.scrollView.contentOffset.x = x + width + 30 - ScreenWidth
  103. } else if index == 0 && self.scrollView.contentOffset.x > 0 {
  104. self.scrollView.contentOffset.x = 0
  105. }
  106. }
  107. chooseItemClosure!(sender.tag - 100)
  108. }
  109. /*
  110. // Only override draw() if you perform custom drawing.
  111. // An empty implementation adversely affects performance during animation.
  112. override func draw(_ rect: CGRect) {
  113. // Drawing code
  114. }
  115. */
  116. }
  117. extension String {
  118. // func sizeWithText(font: UIFont, size: CGSize) -> CGSize {
  119. //// let attributes = []
  120. //
  121. //
  122. // }
  123. func sizeWithText(font: UIFont, size: CGSize) -> CGSize {
  124. let attributes = [NSAttributedString.Key.font: font]
  125. let option = NSStringDrawingOptions.usesLineFragmentOrigin
  126. let rect: CGRect = self.boundingRect(with: size, options: option, attributes: attributes, context: nil)
  127. return rect.size
  128. }
  129. }