So my app has a tableview with a list of object with an edit button that would allow to the selection of multiple rows for deletion. Similar to emails on ios where you can select however emails to delete at once and the tableview re-adjusts correctly to how many rows were deleted.
Deleting one works just fine as should be. Problem is when trying to delete multiple using tableView:deleteRow(index) on the rows to be deleted… that all rows below get moved up only one rows worth height. so if I tried to delete 2 rows, everything would shift one up and there would be one row that is completely empty.
Has anyone run into this problem or know of a work around to this?