我正在使用Eureka Forms for Swift。我想在一行中添加2个单元格。例如,一个单元格是选择器,另一个是NameRow。
在我的代码中,有一个行是NameRow
。
顺便说一下,在IOS中,我提到的场景已经包含在添加新的联系信息中。
感谢您的建议和帮助。
这是我的代码
form +++
MultivaluedSection(multivaluedOptions: [.Reorder, .Insert, .Delete],
header: "Multivalued TextField",
footer: ".Insert multivaluedOption adds the 'Add New Tag' button row as last cell.")
{
row in
row.tag = "textfields"
row.addButtonProvider = { section in
return ButtonRow(){
$0.title = "Add New"
}.cellUpdate { cell, row in
cell.textLabel?.textAlignment = .left
}
}
row.multivaluedRowToInsertAt = { index in
return NameRow() {
$0.placeholder = "Field1"
}
}
}
屏幕截图