ActiveDetailCell.swift 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. //
  2. // ActiveDetailCell.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/9/2.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. typealias TextFieldBlock = (String) -> Void
  10. class ActiveDetailCell: UITableViewCell {
  11. @IBOutlet weak var bgView: UIView!
  12. @IBOutlet weak var leadingLabel: UILabel!
  13. @IBOutlet weak var centerLabel: UILabel!
  14. @IBOutlet weak var trailingTextField: UITextField!
  15. @IBOutlet weak var lineView: UIView!
  16. var textFieldBlock: TextFieldBlock?
  17. var type: String = ""
  18. // 是否需要分割线
  19. var isNeedSep: Bool = false {
  20. didSet {
  21. if isNeedSep {
  22. lineView.isHidden = false
  23. addDashdeBorderLayer(by: lineView)
  24. } else {
  25. lineView.isHidden = true
  26. }
  27. }
  28. }
  29. override func layoutSubviews() {
  30. trailingTextField.addTarget(self, action: #selector(textFieldDidChanged(textField:)), for: .editingChanged)
  31. trailingTextField.keyboardType = .decimalPad
  32. let rect: CGRect = CGRect.init(x: 0, y: 0, width: frame.width - 30, height: frame.height)
  33. if type == "1" {
  34. let maskPath = UIBezierPath(roundedRect: rect, byRoundingCorners: [.topLeft, .topRight], cornerRadii: CGSize(width: 10.0, height: 10.0))
  35. let maskLayer = CAShapeLayer()
  36. maskLayer.frame = rect
  37. maskLayer.path = maskPath.cgPath
  38. bgView.layer.mask = maskLayer
  39. } else if type == "2" {
  40. let maskPath = UIBezierPath(roundedRect: rect, byRoundingCorners: [.bottomLeft, .bottomRight], cornerRadii: CGSize(width: 10.0, height: 10.0))
  41. let maskLayer = CAShapeLayer()
  42. maskLayer.frame = rect
  43. maskLayer.path = maskPath.cgPath
  44. bgView.layer.mask = maskLayer
  45. } else if type == "3" {
  46. let maskPath = UIBezierPath(roundedRect: rect, byRoundingCorners: [.topLeft, .topRight, .bottomLeft, .bottomRight], cornerRadii: CGSize(width: 10.0, height: 10.0))
  47. let maskLayer = CAShapeLayer()
  48. maskLayer.frame = rect
  49. maskLayer.path = maskPath.cgPath
  50. bgView.layer.mask = maskLayer
  51. }
  52. }
  53. @objc func textFieldDidChanged(textField: UITextField) {
  54. if (textField.text?.hasPrefix("."))! {
  55. textField.text = "0\(textField.text ?? ".")"
  56. }
  57. if (textField.text?.hasSuffix("."))! {
  58. var num: Int = 0
  59. for c in textField.text! {
  60. if c == "." {
  61. num = num + 1
  62. }
  63. }
  64. if num > 1 {
  65. textField.text = textField.text?.substringTo(index: (textField.text?.length())! - 1)
  66. }
  67. }
  68. let str: String = textField.placeholder?.substringFrom(start: 3, end: (textField.placeholder?.length())! - 3) ?? "0"
  69. let target: String = textField.placeholder?.substringFrom(index: (textField.placeholder?.length())! - 2) ?? "分润"
  70. let txt: String = ((textField.text?.length() == 0) ? "0" : textField.text)!
  71. let f = Float(txt)
  72. let curAm = CGFloat.init(f!)
  73. let defaultAm = CGFloat.init(Float(str)!)
  74. if target == "金额" {
  75. if curAm > defaultAm {
  76. SVProgressHUD.showError(withStatus: "填写金额应小于或等于\(defaultAm)")
  77. textField.text = ""
  78. if textFieldBlock != nil {
  79. textFieldBlock!("")
  80. }
  81. return
  82. }
  83. } else {
  84. // if curAm < defaultAm {
  85. // SVProgressHUD.showError(withStatus: "填写\(target)应大于或等于\(defaultAm)");
  86. // textField.text = ""
  87. // if textFieldBlock != nil {
  88. // textFieldBlock!("")
  89. // }
  90. // return
  91. // }
  92. }
  93. if textFieldBlock != nil {
  94. textFieldBlock!(textField.text ?? "")
  95. }
  96. }
  97. func addDashdeBorderLayer(by view: UIView) {
  98. let rect: CGRect = CGRect.init(x: 0, y: 0, width: frame.width - 30, height: frame.height)
  99. let imgV: UIImageView = UIImageView(frame: CGRect(x: 0, y: 0, width: rect.width, height: 1))
  100. view.addSubview(imgV)
  101. UIGraphicsBeginImageContext(imgV.frame.size)
  102. let context = UIGraphicsGetCurrentContext()
  103. context?.setLineCap(CGLineCap.square)
  104. let lengths: [CGFloat] = [2, 4 ]
  105. context?.setStrokeColor(UIColor.red.cgColor)
  106. context?.setLineWidth(2)
  107. context?.setLineDash(phase: 0, lengths: lengths)
  108. context?.move(to: CGPoint(x: 0, y: 0))
  109. context?.addLine(to: CGPoint(x: rect.width, y: 0))
  110. context?.strokePath()
  111. imgV.image = UIGraphicsGetImageFromCurrentImageContext()
  112. //结束
  113. UIGraphicsEndImageContext()
  114. }
  115. override func awakeFromNib() {
  116. super.awakeFromNib()
  117. // Initialization code
  118. }
  119. override func setSelected(_ selected: Bool, animated: Bool) {
  120. super.setSelected(selected, animated: animated)
  121. // Configure the view for the selected state
  122. }
  123. }