TBEmptyDataSet icon indicating copy to clipboard operation
TBEmptyDataSet copied to clipboard

emptyDataSetShouldDisplay(... not called when insertRowsAtIndexPaths finishes.

Open thejeff77 opened this issue 5 years ago • 0 comments

When insertRowsAtIndexPaths is called, the emptyDataSetShouldDisplay(... doesn't trigger, so cells are added to the table and the empty data set image remains.

Workaround:

                    self.beginUpdates()
                    self.insertRows(at: indexPaths, with: .right)
                    self.endUpdates()

Hope someone can give this a quick look-see!

thejeff77 avatar Jul 25 '19 03:07 thejeff77