我在Swift中使用Eureka表单库但是没有显示添加或删除图标
这是代码:
+++
MultivaluedSection(multivaluedOptions: [.Reorder, .Insert, .Delete],
header: "Directions",
footer: "") {
$0.addButtonProvider = { section in
return ButtonRow(){
$0.title = "Add New item"
}
}
$0.multivaluedRowToInsertAt = { index in
return TextRow { row in
row.placeholder = "step"
}
}
$0 <<< TextRow { row in
row.placeholder = "step"
}
}
有人知道我是省略了一步还是我需要做什么?
谢谢
我只是补充一下
tableView.isEditing = true
在viewDidLoad()中