我试图根据日历在今天,昨天和完整日期显示UItableview节标题。现在,该部分的标题显示了完整日期。我该怎么办?
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
let section = self.sections[section]
let date = section.sectionItem
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "MMM dd, yyyy"
return dateFormatter.string(from: date)
}