OptionsTableViewCell.swift 635 B

12345678910111213141516171819202122232425262728
  1. //
  2. // OptionsTableViewCell.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 13/09/21.
  6. //
  7. import UIKit
  8. class OptionsTableViewCell: UITableViewCell {
  9. @IBOutlet var optionTitleLabel: UILabel!
  10. @IBOutlet var noOfRunsLabel: UILabel!
  11. @IBOutlet var noOfWicketsLabel: UILabel!
  12. @IBOutlet var noOfAttemptsLabel: UILabel!
  13. override func awakeFromNib() {
  14. super.awakeFromNib()
  15. // Initialization code
  16. }
  17. override func setSelected(_ selected: Bool, animated: Bool) {
  18. super.setSelected(selected, animated: animated)
  19. // Configure the view for the selected state
  20. }
  21. }