create group of M13Checkbox
how can I create a group of M13Checkbox which when I check one of them the others automatically unchecked
Has anyone got answer for the same yet ?
This is because checkbox controller is singleton by default:
fileprivate var controller: M13CheckboxController = DefaultValues.controller
I assume it's a bug... As a workaround you can try this fix:
checkbox.stateChangeAnimation = .stroke
With the current implementation, it resets the default controller to a new instance.
Hi. Any update on this issue. I am facing the same problem. I have a tableView which has a checkBox, label and a radioButton in it. I have to select only one radioButton at a time. The other radioButtons in the cell get automatically deselected when I select new radioButton. I am badly stuck on this issue. Please help.