1

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

在以下情况下,我有一个NSTableCellView名为TestTableCellView的子类,它显示三个字段:名字、姓氏和他或她的出生日期(以字符串形式)。

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我在网上找不到很多例子。我发现的唯一例子是他的主题,这没有帮助。无论如何,我做错了什么?我的 Xcode 版本是 13.1。谢谢。

4

1 回答 1

0

创建这样的快照,它应该可以工作:

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)

在此处输入图像描述

于 2021-12-07T14:57:32.083 回答