我没有在文档中找到如何添加选择多行的能力(参见附页截图)。我知道如何用普通的UITableView
做到这一点,但当我使用Eureka并打电话给tableView.setEditing(true, animated: true)
时没有任何反应。有没有办法用Eureka实现这个?
使用MultipleSelectorRow
,例如:
<<< 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(_:)))
}
用它来呈现一个有多种选择的to
视图控制器。