我有一个需要填充的UITableView标头。我正在使用ViewForHeaderInSection
数据源数组是在我选择它们之后由Footer Section的单元格创建的(我选择了我想要的最喜欢的单元格" pin to top"。
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let headerCell = tableView.dequeueReusableCell(withIdentifier: "HeaderViewCell") as? HeaderTableViewCell
headerCell?.name.text = favoritecells //how can I select the source?
return headerCell
}
如何填写此功能?
答案 0 :(得分:0)
您有多个部分标题
let headerTitle = sectionTitles[section]
或者您可以在favouriteCell中添加sectionTitles变量
headerCell?.name.text = favoritecells.sectionTitles[section]