标签: ios swift rx-swift rxdatasources
我关注此sample并成功创建了多个部分tableView,但如何将项目附加到其中一个部分?我可以重新创建该部分,但我想附加项而不是重新加载tableView。
tableView
答案 0 :(得分:0)
您可以执行以下操作:
self.sections[lastSectionIndex].items.append(newItem)
其中lastSectionIndex是您要更新其项目的部分的索引。
lastSectionIndex
另外,我建议您使用Variable部分模型进行无缝更新。
Variable