Im creating a chat using uiTableView. The response is send as streaming so I need to reload last cell até every response update. However when I do reload row and scroll to bottom, the content of the last cell seems to be drag to the bottom instead of looking as a regular scroll.
@Camacho0710 Are you using diffable data sources? It handles automatically diffing sections & items for you, and generating the correct batch updates on the table view.
If you are then you’d use a combination of UITableViewDiffableDataSource + your own change detection for properties within existing items. You can call the reconfigure or reload APIs on the diffable snapshot as needed, to update content within existing views.
Updating collection views using diffable data sources sample project covers this. Please review the sample project and apply the learnings.