CommonHeaderView.swift 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. //
  2. // CommonHeaderView.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/13.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class CommonHeaderView: UIView {
  10. var isCycle: Bool = false {
  11. didSet {
  12. setupUI()
  13. }
  14. }
  15. var isMoney: Bool = false
  16. var dataView: CommonDataView = {
  17. let dataV = CommonDataView.init(frame: CGRect.init(x: 20, y: 10, width: UIScreen.main.bounds.width - 40, height: 160))
  18. return dataV
  19. }()
  20. var dataView1: CommonDataView = {
  21. let dataV = CommonDataView.init(frame: CGRect.init(x: 20, y: 10, width: UIScreen.main.bounds.width - 40, height: 160))
  22. return dataV
  23. }()
  24. var dataView2: CommonMoneyView = {
  25. let dataV = CommonMoneyView.init(frame: CGRect.init(x: 20, y: 10, width: UIScreen.main.bounds.width - 40, height: 160))
  26. return dataV
  27. }()
  28. var bannerView: XFBanner = {
  29. let banner = XFBanner.init(frame: CGRect.init(x: 20, y: 10, width: UIScreen.main.bounds.width - 40, height: 160))
  30. return banner
  31. }()
  32. override init(frame: CGRect) {
  33. super.init(frame: frame)
  34. // setupUI()
  35. }
  36. required init?(coder: NSCoder) {
  37. fatalError("init(coder:) has not been implemented")
  38. }
  39. func setupUI() {
  40. if isCycle {
  41. setupUIForCycle()
  42. } else {
  43. if isMoney {
  44. setupUIForNoCycle1()
  45. }else{
  46. setupUIForNoCycle()
  47. }
  48. }
  49. }
  50. func setupUIForNoCycle() {
  51. self.backgroundColor = UIColor.init(white: 242/255.0, alpha: 1.0)
  52. self.addSubview(dataView)
  53. }
  54. func setupUIForNoCycle1() {
  55. self.backgroundColor = UIColor.init(white: 242/255.0, alpha: 1.0)
  56. self.addSubview(dataView2)
  57. }
  58. func setupUIForCycle() {
  59. self.backgroundColor = UIColor.init(white: 242/255.0, alpha: 1.0)
  60. self.addSubview(bannerView)
  61. bannerView.viewArr = [dataView, dataView1]
  62. }
  63. /*
  64. // Only override draw() if you perform custom drawing.
  65. // An empty implementation adversely affects performance during animation.
  66. override func draw(_ rect: CGRect) {
  67. // Drawing code
  68. }
  69. */
  70. }