如何在UITableView中填充标题单元格

时间:2018-01-03 07:38:18

标签: ios swift uitableview header

我有一个需要填充的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
}

如何填写此功能?

1 个答案:

答案 0 :(得分:0)

您有多个部分标题

let headerTitle = sectionTitles[section]

或者您可以在favouriteCell中添加sectionTitles变量

headerCell?.name.text = favoritecells.sectionTitles[section]