Files
ShopInventory_iOS/InventoryApp/MenuTableViewCell.swift
2018-09-03 02:32:25 -07:00

25 lines
486 B
Swift

//
// MenuTableViewCell.swift
// InventoryApp
//
// Created by h_mal on 29/08/2018.
// Copyright © 2018 h_mal. All rights reserved.
//
import UIKit
class MenuTableViewCell: UITableViewCell {
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}