Swift UIKit扩展单元无法正常工作

问题描述

我正在尝试在tableView内实现可扩展单元格。我正在使用

expandedindexSet : IndexSet = [] 

跟踪扩展的行。当表加载时,我确认ExpandedindexSet包含indexPath的当前行:

if self.viewmodel.expandedindexSet.contains(row) {
                cell.configureCell(rule: item,isExpanded: true)
                } else {
                    cell.configureCell(rule: item,isExpanded: false)

在选择中,我也使用这种方法来扩展或压缩单元格:

if viewmodel.expandedindexSet.contains(indexPath.row) {
            viewmodel.expandedindexSet.remove(indexPath.row)
        } else {
            // if the cell is not expanded,add it to the indexset to expand it
            viewmodel.expandedindexSet.insert(indexPath.row)
        }
        // the animation magic happens here
        // this will call cellForRow for the indexPath you supplied,and animate the changes
        tableView.reloadRows(at: [indexPath],with: .automatic)

但是它仅对一个单元格有效,如果我尝试在扩展一个单元格的同时扩展第二个单元格,则它不起作用。如何使用相同的方法获取多个展开的单元格,我无法使用映射为isExpanded的属性映射到附加到dataSource的对象数组,因为我正在使用rxSwift。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)