Files
PINRemoteImage/Examples/Example-tvOS/PINRemoteImage.tvOSExample/CollectionViewCell.swift

21 lines
341 B
Swift

//
// 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
}
}