Select multiple rows with Eureka framework

1k Views Asked by At

I didn't find in the documentation how to add ability to select multiple rows (see the attached screenshot). I know how to do it with ordinary UITableView, but when I use Eureka and call tableView.setEditing(true, animated: true) nothing happens. Is there any way to implement this with Eureka?

1

There are 1 best solutions below

1
On

Use a MultipleSelectorRow, for example:

<<< MultipleSelectorRow<Emoji>() {
        $0.title = "MultipleSelectorRow"
        $0.options = [, , , , , ]
        $0.value = []
        }
        .onPresent { from, to in
            to.navigationItem.rightBarButtonItem = UIBarButtonItem(barButtonSystemItem: .done, target: from, action: #selector(YourViewController.multipleSelectorDone(_:)))
    }

Use it to present a to view controller with multiple choices.