NCTrashListCell.swift 1002 B

1234567891011121314151617181920212223242526272829303132
  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. @IBOutlet weak var restore: UIImageView!
  15. @IBOutlet weak var more: UIImageView!
  16. override func awakeFromNib() {
  17. super.awakeFromNib()
  18. }
  19. public func configure(with image: UIImage?, title: String, info: String) {
  20. imageView.image = image
  21. labelTitle.text = title
  22. labelInfo.text = info
  23. restore.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "restore"), multiplier: 2, color: NCBrandColor.sharedInstance.icon)
  24. more.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "more"), multiplier: 2, color: NCBrandColor.sharedInstance.icon)
  25. }
  26. }