QuestionNumberCollectionViewCell.swift 520 B

1234567891011121314151617181920212223
  1. //
  2. // QuestionNumberCollectionViewCell.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 11/10/23.
  6. //
  7. import UIKit
  8. class QuestionNumberCollectionViewCell: UICollectionViewCell {
  9. @IBOutlet var customCellView: UIView!
  10. @IBOutlet var serialNoLabel: UILabel!
  11. override func awakeFromNib() {
  12. super.awakeFromNib()
  13. // Customize the appearance of your cell's content view
  14. customCellView.layer.cornerRadius = 20
  15. customCellView.clipsToBounds = true
  16. }
  17. }