16 lines
229 B
Swift
16 lines
229 B
Swift
|
//
|
||
|
// ImageCell.swift
|
||
|
// CapFinder
|
||
|
//
|
||
|
// Created by User on 07.02.18.
|
||
|
// Copyright © 2018 User. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
class ImageCell: UICollectionViewCell {
|
||
|
|
||
|
@IBOutlet weak var capView: UIImageView!
|
||
|
|
||
|
}
|