// // QuestionNumberCollectionViewCell.swift // LMS // // Created by Suraj Kumar Mandal on 11/10/23. // import UIKit class QuestionNumberCollectionViewCell: UICollectionViewCell { @IBOutlet var customCellView: UIView! @IBOutlet var serialNoLabel: UILabel! override func awakeFromNib() { super.awakeFromNib() // Customize the appearance of your cell's content view customCellView.layer.cornerRadius = 20 customCellView.clipsToBounds = true } }