StickerCollectionViewCell.swift 356 B

123456789101112131415161718
  1. //
  2. // StickerCollectionViewCell.swift
  3. // Photo Editor
  4. //
  5. // Created by Mohamed Hamed on 4/23/17.
  6. // Copyright © 2017 Mohamed Hamed. All rights reserved.
  7. //
  8. import UIKit
  9. class StickerCollectionViewCell: UICollectionViewCell {
  10. @IBOutlet weak var stickerImage: UIImageView!
  11. override func awakeFromNib() {
  12. super.awakeFromNib()
  13. }
  14. }