ChoiceCollectionViewCell.swift 270 B

123456789101112131415
  1. //
  2. // ChoiceCollectionViewCell.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 15/09/21.
  6. //
  7. import UIKit
  8. class ChoiceCollectionViewCell: UICollectionViewCell {
  9. @IBOutlet var radioButton: UIButton!
  10. @IBOutlet var choiceLabel: UILabel!
  11. }