選択した値が form.values() に入力されていませんか?
form +++ SelectableSection<ListCheckRow<String>>("", selectionType: .singleSelection(enableDeselection: true))
form.last!.header = HeaderFooterView(title: field.comment)
form.last!.tag = field.column_name
for option in options {
form.last! <<< ListCheckRow<String>(){ listRow in
listRow.title = option
listRow.selectableValue = option
listRow.value = nil
}
}
ありがとう