123456789101112131415161718 |
- //
- // PhotoCollectionViewCell.swift
- // MCPlus
- //
- // Created by seo ha on 07/02/2019.
- // Copyright © 2019 KangSH. All rights reserved.
- //
- import Foundation
- import UIKit
- class PhotoCollectionViewCell: UICollectionViewCell {
-
- @IBOutlet weak var album: UIImageView!
-
- @IBOutlet weak var check: CheckImageButton!
-
- }
|