CloudFileFolderCell.swift 658 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // CloudFileFolderCell.swift
  3. // O2Platform
  4. //
  5. // Created by FancyLou on 2019/10/8.
  6. // Copyright © 2019 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class CloudFileFolderCell: UITableViewCell {
  10. @IBOutlet weak var folderUpdateTimeLabel: UILabel!
  11. @IBOutlet weak var folderNameLabel: UILabel!
  12. @IBOutlet weak var checkBoxImage: UIImageView!
  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. }