如何使用 NSTableViewDiffableDataSource 使用 NSTableView 加载数据

How to Use NSTableViewDiffableDataSource to Load Data with NSTableView

我正在尝试学习如何使用 NSTableViewDiffableDataSource 通过 NSTableView 加载数据。我可以使用 UITableViewDiffableDataSourceUICollectionViewDiffableDataSource 在 iOS 中加载数据,因为我在网上找到了一些示例。但是我无法在 Cocoa.

中使用 NSTableViewDiffableDataSource

在下面的例子中,我有一个名为 TestTableCellViewNSTableCellView 的子类,它显示三个字段:名字、姓氏和他或她的日期在字符串中诞生。

import Cocoa

class ViewController: NSViewController {
    // MARK: - Variables
    var dataSource: NSTableViewDiffableDataSource<Int, Contact>?
    
    
    // MARK: - IBOutlet
    @IBOutlet weak var tableView: NSTableView!
    
    
    // MARK: - Life cycle
    override func viewWillAppear() {
        super.viewWillAppear()
        
        let model1 = Contact(id: 1, firstName: "Christopher", lastName: "Wilson", dateOfBirth: "06-02-2001")
        let model2 = Contact(id: 2, firstName: "Jen", lastName: "Psaki", dateOfBirth: "08-25-1995")
        let model3 = Contact(id: 3, firstName: "Pete", lastName: "Marovich", dateOfBirth: "12-12-2012")
        let model4 = Contact(id: 4, firstName: "Deborah", lastName: "Mynatt", dateOfBirth: "11-08-1999")
        let model5 = Contact(id: 5, firstName: "Christof", lastName: "Kreb", dateOfBirth: "01-01-2001")
        let models =  [model1, model2, model3, model4, model5]
        
        dataSource = NSTableViewDiffableDataSource(tableView: tableView, cellProvider: { tableView, tableColumn, row, identifier in
            let cell = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier(rawValue: "cell"), owner: self) as! TestTableCellView
            let model = models[row]
            cell.firstField.stringValue = model.firstName
            cell.lastField.stringValue = model.lastName
            cell.dobField.stringValue = model.dateOfBirth
            return cell
        })
        tableView.dataSource = dataSource
        guard let dataSource = self.dataSource else {
            return
        }
        var snapshot = dataSource.snapshot()
        snapshot.appendSections([0])
        snapshot.appendItems(models, toSection: 0)
        dataSource.apply(snapshot, animatingDifferences: true, completion: nil) // <--- crashing...
    }
}

struct Contact: Hashable {
    var id: Int
    var firstName: String
    var lastName: String
    var dateOfBirth: String
}

嗯...应用程序崩溃并出现错误“无效参数不满足:快照。”几天前,我测试了另一个示例,该示例也崩溃了同一行(dataSource.apply)。我在网上找不到很多涉及 NSTableViewDiffableDataSource 的例子。我发现的唯一示例是 this topic,它没有帮助。无论如何,我做错了什么?我的 Xcode 版本是 13.1。谢谢。

像这样创建一个快照,它应该可以工作:

guard let dataSource = self.dataSource else {
    return
}

var snapshot = NSDiffableDataSourceSnapshot<Int, Contact>()
snapshot.appendSections([0])
snapshot.appendItems(models, toSection: 0)
dataSource.apply(snapshot, animatingDifferences: false)