12345678910111213141516171819 |
- //
- // EmojiCollectionViewCell.swift
- // Photo Editor
- //
- // Created by Mohamed Hamed on 4/30/17.
- // Copyright © 2017 Mohamed Hamed. All rights reserved.
- //
- import UIKit
- class EmojiCollectionViewCell: UICollectionViewCell {
- @IBOutlet weak var emojiLabel: UILabel!
-
- override func awakeFromNib() {
- super.awakeFromNib()
- }
- }
|