mirror of
https://github.com/hmalik144/ShopInventory_iOS.git
synced 2025-12-10 03:05:31 +00:00
25 lines
478 B
Swift
25 lines
478 B
Swift
//
|
|
// TableViewCell.swift
|
|
// InventoryApp
|
|
//
|
|
// Created by h_mal on 25/08/2018.
|
|
// Copyright © 2018 h_mal. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class TableViewCell: 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
|
|
}
|
|
|
|
}
|