SettlementTableViewCell.swift 543 B

12345678910111213141516171819202122232425
  1. //
  2. // SettlementTableViewCell.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/8/12.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class SettlementTableViewCell: UITableViewCell {
  10. @IBOutlet weak var lblContent: UILabel!
  11. override func awakeFromNib() {
  12. super.awakeFromNib()
  13. // Initialization code
  14. }
  15. override func setSelected(_ selected: Bool, animated: Bool) {
  16. super.setSelected(selected, animated: animated)
  17. // Configure the view for the selected state
  18. }
  19. }