我正在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"
}
}
有人知道我是否被省略了一个步骤,或者我需要做什么?
谢谢
答案 0 :(得分:0)
我只是添加
tableView.isEditing = true
在viewDidLoad()