ActiveNavCustomView.swift 612 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ActiveNavCustomView.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/9/4.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ActiveNavCustomView: UIView {
  10. @IBOutlet weak var titleLabel: UILabel!
  11. @IBOutlet weak var selectImgV: UIImageView!
  12. var canEdit: Bool = false {
  13. didSet {
  14. selectImgV.isHidden = !canEdit
  15. }
  16. }
  17. // Only override draw() if you perform custom drawing.
  18. // An empty implementation adversely affects performance during animation.
  19. override func draw(_ rect: CGRect) {
  20. // Drawing code
  21. }
  22. }