Append items to MultipleSectionModel

317 Views Asked by At

I follow this sample and successfully created multi-section tableView, but how can I append items to one of this sections? I can recreate the section but I want to append items instead of reloading tableView.

1

There are 1 best solutions below

0
On

You can do something like:

self.sections[lastSectionIndex].items.append(newItem)

where lastSectionIndex is the index for the section you want to update its items.

Also, I recommend you use Variable for your sections model for seamless updates.