作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试为 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
中确实存在这样的东西吗?
最佳答案
我能够通过子类化 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>
关于swift - 如何在 UITableViewDiffableDataSource 中添加标题名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58183637/
我是一名优秀的程序员,十分优秀!