NCTrashListCell.swift 618 B

123456789101112131415161718192021222324252627
  1. //
  2. // NCTrashListCell.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 08/10/2018.
  6. // Copyright © 2018 TWS. All rights reserved.
  7. //
  8. import Foundation
  9. import UIKit
  10. class NCTrashListCell: UICollectionViewCell {
  11. @IBOutlet weak var imageView: UIImageView!
  12. @IBOutlet weak var labelTitle: UILabel!
  13. @IBOutlet weak var labelInfo: UILabel!
  14. override func awakeFromNib() {
  15. super.awakeFromNib()
  16. }
  17. public func configure(with image: UIImage?, title: String, info: String) {
  18. imageView.image = image
  19. labelTitle.text = title
  20. labelInfo.text = info
  21. }
  22. }