Swift在透明粘性标题下面启动uitableviewcell

时间:2017-07-01 16:07:41

标签: ios swift uitableview

如何在透明标题正下方的UITableView部分中显示第一个单元格?

目前的尝试:

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    return 75
}

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {

    let cell = tableView.dequeueReusableCell(withIdentifier: "ReminderHeaderTableViewCell") as! ReminderHeaderTableViewCell
    cell.contentView.tag = section

    return cell.contentView
}

结果: Header and then cell at bottom

期望: Header and then cell exactly at below

0 个答案:

没有答案