TiXianRecordListTableViewCell.swift 766 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // TiXianRecordListTableViewCell.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/21.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class TiXianRecordListTableViewCell: UITableViewCell {
  10. @IBOutlet weak var lblState: UILabel!
  11. @IBOutlet weak var lblDate: UILabel!
  12. @IBOutlet weak var lblMoney: UILabel!
  13. @IBOutlet weak var lblTitle: UILabel!
  14. @IBOutlet weak var dzMoneyLable: UILabel!
  15. override func awakeFromNib() {
  16. super.awakeFromNib()
  17. // Initialization code
  18. self.dzMoneyLable.isHidden = true
  19. }
  20. override func setSelected(_ selected: Bool, animated: Bool) {
  21. super.setSelected(selected, animated: animated)
  22. // Configure the view for the selected state
  23. }
  24. }