ApplyCardAccountTableViewCell.swift 594 B

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