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() cell.radioBox.selectBox()
_ = FormValidator.validate(delegate: delegateObject?.formHolderDelegate) _ = FormValidator.validate(delegate: delegateObject?.formHolderDelegate)
cell.updateAccessibility() cell.updateAccessibility()
guard let radioB = boxes?[indexPath.row] else { return } guard let radioBox = boxes?[indexPath.row] else { return }
radioDelegate?.selectedRadioBox(text: radioB.text) radioDelegate?.selectedRadioBox(text: radioBox.text)
} }
open func collectionView(_ collectionView: UICollectionView, didDeselectItemAt indexPath: IndexPath) { open func collectionView(_ collectionView: UICollectionView, didDeselectItemAt indexPath: IndexPath) {

View File

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