Archived
23 lines
403 B
Swift
23 lines
403 B
Swift
//
|
|
// MenuViewCell.swift
|
|
// AvH Plan
|
|
//
|
|
// Created by Deniz Duezgoeren on 16.07.19.
|
|
// Copyright © 2019 Deniz Duezgoeren. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import MagazineLayout
|
|
|
|
class MenuViewCell: MagazineLayoutCollectionViewCell {
|
|
|
|
|
|
@IBOutlet weak var content: UILabel!
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
// Initialization code
|
|
}
|
|
|
|
}
|