1234567891011121314151617181920212223242526272829303132 |
- //
- // NCTrashListCell.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 08/10/2018.
- // Copyright © 2018 TWS. All rights reserved.
- //
- import Foundation
- import UIKit
- class NCTrashListCell: UICollectionViewCell {
-
- @IBOutlet weak var imageView: UIImageView!
- @IBOutlet weak var labelTitle: UILabel!
- @IBOutlet weak var labelInfo: UILabel!
- @IBOutlet weak var restore: UIImageView!
- @IBOutlet weak var more: UIImageView!
- override func awakeFromNib() {
- super.awakeFromNib()
- }
-
- public func configure(with image: UIImage?, title: String, info: String) {
- imageView.image = image
- labelTitle.text = title
- labelInfo.text = info
-
- restore.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "restore"), multiplier: 2, color: NCBrandColor.sharedInstance.icon)
- more.image = CCGraphics.changeThemingColorImage(UIImage.init(named: "more"), multiplier: 2, color: NCBrandColor.sharedInstance.icon)
- }
- }
|