fixed as per kevin's comments(NBD Ar)

This commit is contained in:
rajampetS 2021-06-17 10:27:54 +05:30
parent 8d425862f5
commit 080c1c192f
2 changed files with 3 additions and 5 deletions

View File

@ -166,8 +166,8 @@ extension RadioBoxes: UICollectionViewDelegate {
cell.radioBox.selectBox()
_ = FormValidator.validate(delegate: delegateObject?.formHolderDelegate)
cell.updateAccessibility()
guard let radioB = boxes?[indexPath.row] else { return }
radioDelegate?.selectedRadioBox(text: radioB.text)
guard let radioBox = boxes?[indexPath.row] else { return }
radioDelegate?.selectedRadioBox(text: radioBox.text)
}
open func collectionView(_ collectionView: UICollectionView, didDeselectItemAt indexPath: IndexPath) {

View File

@ -13,9 +13,7 @@ import Foundation
//--------------------------------------------------
// MARK: - Properties
//--------------------------------------------------
open class var identifier: String {
return ""
}
open class var identifier: String { "" }
public var pageType: String