LogFileTableViewCell.swift 658 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // LogFileTableViewCell.swift
  3. // O2Platform
  4. //
  5. // Created by 刘振兴 on 2017/6/2.
  6. // Copyright © 2017年 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class LogFileTableViewCell: UITableViewCell {
  10. @IBOutlet weak var iconImageView: UIImageView!
  11. @IBOutlet weak var fileNameLabel: UILabel!
  12. @IBOutlet weak var fileSizeLabel: UILabel!
  13. override func awakeFromNib() {
  14. super.awakeFromNib()
  15. // Initialization code
  16. }
  17. override func setSelected(_ selected: Bool, animated: Bool) {
  18. super.setSelected(selected, animated: animated)
  19. // Configure the view for the selected state
  20. }
  21. }