MenuWebinarTableViewCell.swift 510 B

12345678910111213141516171819202122232425
  1. //
  2. // MenuWebinarTableViewCell.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 10/09/21.
  6. //
  7. import UIKit
  8. class MenuWebinarTableViewCell: UITableViewCell {
  9. @IBOutlet var webinarMenuLabel: UILabel!
  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. }