LessonTableViewCell.swift 533 B

1234567891011121314151617181920212223242526
  1. //
  2. // LessonTableViewCell.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 06/09/22.
  6. //
  7. import UIKit
  8. class LessonTableViewCell: UITableViewCell {
  9. @IBOutlet var customCellView: UIView!
  10. @IBOutlet var lessonNameLabel: UILabel!
  11. override func awakeFromNib() {
  12. super.awakeFromNib()
  13. // Initialization code
  14. }
  15. override func setSelected(_ selected: Bool, animated: Bool) {
  16. super.setSelected(selected, animated: animated)
  17. // Configure the view for the selected state
  18. }
  19. }