WebinarTableViewCell.swift 452 B

1234567891011121314151617181920212223
  1. //
  2. // WebinarTableViewCell.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 14/04/22.
  6. //
  7. import UIKit
  8. class WebinarTableViewCell: UITableViewCell {
  9. override func awakeFromNib() {
  10. super.awakeFromNib()
  11. // Initialization code
  12. }
  13. override func setSelected(_ selected: Bool, animated: Bool) {
  14. super.setSelected(selected, animated: animated)
  15. // Configure the view for the selected state
  16. }
  17. }