有没有办法匹配 UITableViewDiffableDataSource 中的部分数匹配字典键数

Is there a way to match Number of Sections match Dictionary Keys count in UITableViewDiffableDataSource

我正在尝试按第一个字符对名称进行分组,并使用新的 UITableViewDiffableDataSource 在 ViewController 中显示它。(例如联系人应用程序)

**A** (header title) 
Apple 
Amazon
**B** (header title)
Broadcom
Bezoz
**C** (header title)
Calderon 

下面是我使用旧数据源方法的代码。

class ViewController: UITableViewDelegate, UITableViewDataSource {
    var tableView = UITableView()
    
    // Data Set for TableView
    var dict = [Character: [Contacts]]() // e.g. ["A": ["Apple", "Amazon"], "B": ["Broadcom, Bezoz"]...]
    var sortedDictKeys = [Character]() // e.g. ["A", "B", "C"]
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return dict[sortedDictKeys[section]].count
    }

    func numberOfSections(in tableView: UITableView) -> Int {
        return sortedDictKeys.count // returns 3 
    }

    func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        return String(viewModel.sortedBreedsKeys[section])
    }

    func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        let header = view as! UITableViewHeaderFooterView
        header.textLabel?.text = sortedDictKeys[section]
    }
}

使用旧的 UITableViewDataSource,我得到了视图,但我如何使用 Diffable 方法设置它。有没有办法设置节和行?

class ViewController: UITableViewDelegate {
    enum Section: CaseIterable {
        case main
    }

    var tableView = UITableView()

    // Data Set for TableView
    var dict = [Character: [Contacts]]() // e.g. ["A": ["Apple", "Amazon"], "B": ["Broadcom, Bezoz"]...]
    var sortedDictKeys = [Character]() // e.g. ["A", "B", "C"]

    var dataSource: UITableViewDiffableDataSource<Section, Contacts>!
    var snapshot = NSDiffableDataSourceSnapshot<Section, Contacts>()

    func viewDidLoad() {
 
        dataSource = UITableViewDiffableDataSource.init(tableView: self.tableView, cellProvider: { tableView, indexPath, contact in
            return UITableViewCell()
        })
    }

    // MARK - TODO - How do I define the snapshot and append sections to reuse section in the snapshot?
}

Appreciate the help! 

删除 Section 枚举。这些部分是排序的键。

使用此类型声明 dataSource

var dataSource: UITableViewDiffableDataSource<Character, Contacts>!

并创建快照

var snapshot = NSDiffableDataSourceSnapshot<Character, Contacts>()
snapshot.appendSections(sortedDictKeys)
sortedDictKeys.forEach { letter in
    snapshot.appendItems(dict[letter]!, toSection: letter)
}