12345678910111213141516171819202122232425 |
- //
- // InstructionTableViewCell.swift
- // LMS
- //
- // Created by Suraj Kumar Mandal on 20/09/22.
- //
- import UIKit
- class InstructionTableViewCell: UITableViewCell {
- @IBOutlet var instructionLabel: UILabel!
-
- 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
- }
- }
|