使用 UITableViewDiffableDataSource 创建章节标题

Creating a section title with UITableViewDiffableDataSource

我正在对 UITableViewDiffableDataSource 进行一些修改,我能够毫无问题地加载 tableView。我正在尝试在 table 视图中创建部分 headers,但是我遇到了一些古怪的行为。

section enum enum定义如下:

    enum AlertLevel: String, Codable, CaseIterable {
        case green = "green"
        case yellow = "yellow"
        case orange = "orange"
        case red = "red"
    }

这是我对 tableView(viewForHeaderInSection:)

的实现
    func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
        let label = UILabel()
        label.text = dataSource.snapshot().sectionIdentifiers[section].rawValue.capitalized
        label.textColor = UIColor.black

        return label
    }

这让我有 4 个标签堆叠在 table 视图顶部的 header 个单元格中。

我将 Dash 启动到 RTFD,我看到 tableView(titleForHeaderInSection:) 是给那只猫剥皮的另一种方法。所以我把它扔进去了,而不是:

    func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        return dataSource.snapshot().sectionIdentifiers[section].rawValue.capitalized
    }

我设置了一个断点,但它从未被击中。所以我实现了 tableView(heightForHeaderInSection:) 并且 header 得到了更新,但是没有显示 header.

的字符串

table 加载速度比 "the old fashioned way" 和 IndexPaths 快很多(我正在使用 USGS 地震数据库学习 TableViewDiffableDataSource),但我不能header 没有出现。

有人知道如何让部分在 TableViewDiffableDataSource 上工作吗?我很难相信他们会在没有这种基本功能的情况下让这样的东西进入野外,所以我只能得出结论,我把事情搞砸了……什么,我不知道 :)

哦...这是我定义数据源的方式:

func makeDataSource() -> UITableViewDiffableDataSource<AlertLevel, Earthquake> {
    return UITableViewDiffableDataSource(tableView: tableView) { tableView, indexPath, earthquake in
        let cell = tableView.dequeueReusableCell(withIdentifier: self.reuseID, for: indexPath)
        cell.textLabel?.text = earthquake.properties.title
        cell.detailTextLabel?.text = earthquake.properties.detail

        return cell
    }
}

我可以通过 class 像这样 UITableViewDiffableDataSource class 来做到这一点:

class MyDataSource: UITableViewDiffableDataSource<Section, Int> {

    override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        let section = self.snapshot().sectionIdentifiers[section]
        return section.header
    }
}

你的Section在哪里:

enum Section: Int {
    case one

    var header: String {
        switch self {
        case .one: return "Header One"
        }
    }
}

然后以这种方式分配新创建的数据源:

dataSource = MyDataSource<Section, Int>

意思是,你不需要再使用UITableViewDiffableDataSource,而是使用subclassed MyDataSource class.