我尝试重新加载UITableView
节标题,而不是重新加载整个节的行,因为我在行中有一个UITextfield
,当我调用tableview reloadSection
时,很清楚文本字段的值
答案 0 :(得分:0)
您可以使用
tableView.beginUpdates()
tableView.endUpdates()
答案 1 :(得分:0)
let sectionIndex = IndexSet(integer: 0)
self.tableView.reloadSections(sectionIndex, with: .none)
您可以使用此代码重新加载表格视图。您不需要重新加载标题即可显示项目