「その他」が選択されている場合、選択したすべてのオプションの選択を解除するにはどうすればよいですか?
let fruits = ["Apple", "Banana", "Guava", "Others"]
form +++= SelectableSection<ImageCheckRow<String>, String>("fruits_section", selectionType: SelectionType.MultipleSelection) { section in
section.header = HeaderFooterView(title: "What is your favorite fruit ?")
}
for fruit in fruits {
form.last! <<< ImageCheckRow<String>(fruit) { lrow in
lrow.title = fruit
lrow.selectableValue = fruit
}
}