mirror of
https://github.com/zhigang1992/PINRemoteImage.git
synced 2026-03-28 22:45:33 +08:00
21 lines
341 B
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
|
|
}
|
|
|
|
}
|