3

我尝试为 中的每个部分添加标题UITableView,但在这种情况下UITableViewDiffableDataSource,我不知道应该在哪里做。我的代码的一部分:

private func prepareTableView() {
    tableView.delegate = self
    tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
    dataSource = UITableViewDiffableDataSource<Sections, User>(tableView: tableView, cellProvider: { (tableView, indexPath, user) -> UITableViewCell? in
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
        cell.textLabel?.text = user.name
        return cell
    })
}

private func addElement(_ user: User) {
    var snap = NSDiffableDataSourceSnapshot<Sections, User>()
    snap.appendSections([.main, .second])
    if isFirst {
        users.append(user)
    } else {
        secondUsers.append(user)
    }
    snap.appendItems(users, toSection: .main)
    snap.appendItems(secondUsers, toSection: .second)
    isFirst.toggle()
    dataSource.apply(snap, animatingDifferences: true, completion: nil)
    dataSource.defaultRowAnimation = .fade
}

UICollectionViewDiffableDataSource有一个参数supplementaryViewProvider,用户可以在其中配置标头。中是否存在这样的东西UITableViewDiffableDataSource

4

2 回答 2

14

我可以通过像这样子类化类来做到这UITableViewDiffableDataSource一点:

class MyDataSource: UITableViewDiffableDataSource<Sections, User> {

    override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        return "Hello, World!"
    }
}

然后在你的代码中而不是这个:

dataSource = UITableViewDiffableDataSource<Sections, User>

使用您自己的数据源类:

dataSource = MyDataSource<Sections, User>
于 2019-10-27T21:53:49.997 回答
-1

是的,查看supplementaryViewProvider属性UICollectionViewDiffableDataSource

Apple 并没有太多关于它的文档,但是您可以使用类似于初始化 diffable 数据源本身的方式来初始化它。它返回一个UICollectionReusableView可以是通用视图,也可以是您的页眉或页脚视图子类之一。

于 2020-01-17T15:28:45.893 回答