Table 视图中的部分名称
Section Names In Table Views
如何获取文本字段的文本,并将其作为表格视图中的一个部分的名称?我想在 Swift 和 Xcode 6 中执行此操作。非常感谢。
您可以使用 titleForHeaderInSection
.
func tableView(tableView: UITableView!, titleForHeaderInSection section: Int) -> String!{
if (section == 0){
return textfield.text
}
if (section == 1){
return textfield2.text
}
}
SWIFT 3.0
来自@Christian 的回答。
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
if section == 0 {
return ""
} else {
return ""
}
}
如何获取文本字段的文本,并将其作为表格视图中的一个部分的名称?我想在 Swift 和 Xcode 6 中执行此操作。非常感谢。
您可以使用 titleForHeaderInSection
.
func tableView(tableView: UITableView!, titleForHeaderInSection section: Int) -> String!{
if (section == 0){
return textfield.text
}
if (section == 1){
return textfield2.text
}
}
SWIFT 3.0 来自@Christian 的回答。
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
if section == 0 {
return ""
} else {
return ""
}
}