// // CollectionViewCell.swift // PINRemoteImage.tvOSExample // // Created by Isaac Overacker on 2/6/16. // // import UIKit class CollectionViewCell: UICollectionViewCell { @IBOutlet weak var imageView: UIImageView! override func prepareForReuse() { super.prepareForReuse() self.imageView.image = nil } }