BillFlowMenuContent.swift 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // BillFlowMenuContent.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/9/1.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. typealias BillFlowBlock = (String) -> Void
  10. class BillFlowMenuContent: UIView {
  11. var lastIndex = 0
  12. var billFlowBlock: BillFlowBlock?
  13. let profitIdArr: NSArray = ["999", "0", "1", "2", "3", "4", "5"]
  14. @IBAction func btnMenuClick(_ sender: Any) {
  15. let btn = (sender as! UIButton)
  16. switch btn.tag {
  17. case 1008: // 重置
  18. let lastBtn: UIButton = self.viewWithTag(lastIndex + 1001) as! UIButton
  19. lastBtn.isSelected = false
  20. lastIndex = 0
  21. let button: UIButton = self.viewWithTag(1001) as! UIButton
  22. button.isSelected = true
  23. break
  24. case 1009: // 确定
  25. if self.billFlowBlock != nil {
  26. let profitId: String = profitIdArr[lastIndex] as! String
  27. self.billFlowBlock!(profitId)
  28. }
  29. break
  30. default:
  31. let button: UIButton = self.viewWithTag(lastIndex + 1001) as! UIButton
  32. button.isSelected = false
  33. lastIndex = btn.tag - 1001
  34. btn.isSelected = true
  35. break
  36. }
  37. }
  38. /*
  39. // Only override draw() if you perform custom drawing.
  40. // An empty implementation adversely affects performance during animation.
  41. override func draw(_ rect: CGRect) {
  42. // Drawing code
  43. }
  44. */
  45. }