如何在透明标题正下方的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
}