使用UITableView
andNSFetchedResultsController
我刷新并显示我的表格的内容。在某些时候,我有一个没有标题视图的屏幕。它应该代替单元格之间的空间。
当我调试视图层次结构时,我有以下信息。UI View 层次结构中的选定单元格适用于Debug View Hierarchy中的选定单元格。
要创建标题视图,我使用以下方法:
override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let workday = workDayObjectForSection(section)
let cell = tableView.dequeueReusableCellWithIdentifier(PBOUserWorkDayCellIdentifier) as! PBOUserWorkDayTableViewCell
cell.configureCellWithWorkDay(workday)
return cell
}