2 // SimpleGalleryCollectionViewCell.swift
5 // Created by Pawel Dabrowski on 17/09/2018.
6 // Copyright © 2018 Fundacja Nowoczesna Polska. All rights reserved.
11 class SimpleGalleryCollectionViewCell: UICollectionViewCell {
13 @IBOutlet weak var imageView: UIImageView!
15 override func awakeFromNib() {
17 imageView.clipsToBounds = true
20 func setup(imageUrlString: String?) {
23 if let url = imageUrlString?.getPhotoUrl(){
25 imageView.kf.setImage(with: ImageResource(downloadURL: url),
26 placeholder: #imageLiteral(resourceName: "list_nocover"),
27 options: [.transition(.fade(1))],
29 completionHandler: { (image, error, cacheType, url) in