EmojiCollectionViewCell.swift 351 B

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