MenuLogoTableViewCell.swift 507 B

12345678910111213141516171819202122232425
  1. //
  2. // MenuLogoTableViewCell.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 09/11/21.
  6. //
  7. import UIKit
  8. class MenuLogoTableViewCell: UITableViewCell {
  9. @IBOutlet var closeButton: UIButton!
  10. override func awakeFromNib() {
  11. super.awakeFromNib()
  12. // Initialization code
  13. }
  14. override func setSelected(_ selected: Bool, animated: Bool) {
  15. super.setSelected(selected, animated: animated)
  16. // Configure the view for the selected state
  17. }
  18. }