fixed as per kevin's comments(NBD Ar)
This commit is contained in:
parent
8d425862f5
commit
080c1c192f
@ -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) {
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user