Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遵循此示例并成功创建了 multi-section tableView,但是如何将项目附加到此部分之一?我可以重新创建该部分,但我想追加项目而不是重新加载tableView。
tableView
您可以执行以下操作:
self.sections[lastSectionIndex].items.append(newItem)
lastSectionIndex您要更新其项目的部分的索引在哪里。
lastSectionIndex
此外,我建议您Variable将部分模型用于无缝更新。
Variable