Diffable 数据源需要指定 aSectionIdentifierType
和 anItemIdentifierType
并且这些类型必须符合Hashable
假设它们必须符合,Hashable
以便数据源可以进行差异化。
那么为什么即使 == 和散列函数相同,它的行为也会根据标识符类型是类还是结构而有所不同呢?或者甚至 === 函数也被类覆盖,使其更像一个值类型?
例子:
import UIKit
public class DebugViewController: UIViewController {
typealias SectionType = IntWrapper
typealias ItemType = IntWrapper
public class IntWrapper: Hashable {
public static func == (lhs: DebugViewController.IntWrapper, rhs: DebugViewController.IntWrapper) -> Bool {
lhs.number == rhs.number
}
public static func === (lhs: DebugViewController.IntWrapper, rhs: DebugViewController.IntWrapper) -> Bool {
lhs.number == rhs.number
}
public func hash(into hasher: inout Hasher) {
hasher.combine(number)
}
var number: Int
init(number: Int) {
self.number = number
}
}
private var dataSource: UITableViewDiffableDataSource<SectionType, ItemType>!
@IBOutlet var tableView: UITableView!
public override func viewDidLoad() {
super.viewDidLoad()
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "DefaultCell")
dataSource = UITableViewDiffableDataSource<SectionType, ItemType>(tableView: tableView) { (tableView, indexPath, item) -> UITableViewCell? in
let cell = tableView.dequeueReusableCell(withIdentifier: "DefaultCell")!
cell.textLabel?.text = "\(item.number)"
return cell
}
apply()
}
@IBAction func buttonTapped(_ sender: Any) {
apply()
}
func apply() {
var snapshot = NSDiffableDataSourceSnapshot<SectionType, ItemType>()
let sections = [IntWrapper(number: 0)]
let items = [IntWrapper(number: 1)]
snapshot.appendSections(sections)
sections.forEach { snapshot.appendItems( items, toSection: $0) }
dataSource.apply(snapshot, animatingDifferences: true)
}
}
如果是一个结构,则表视图在被调用IntWrapper
时什么都不做(基本上加载相同的数据)对我来说,这是预期的行为。apply()
apply()
如果IntWrapper
是一个类,则在调用 apply() 时表视图会重新加载。此外,hash()
甚至没有调用 and == 函数。
除非有人可以访问源(提示,提示),或者除非我在示例中犯了一些错误,否则我认为无法回答这个问题。