12345678910111213141516171819202122232425 |
- //
- // MenuLogoTableViewCell.swift
- // Product Calculator
- //
- // Created by Suraj Kumar Mandal on 09/11/21.
- //
- import UIKit
- class MenuLogoTableViewCell: UITableViewCell {
- @IBOutlet var closeButton: UIButton!
-
- 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
- }
- }
|