KDXCollectionView
KDXCollectionView copied to clipboard
Issues when adding new cells
I was getting update issues when adding/inserting new cells into the collectionView. I was able to solve this by adding the following line:
[self _addVisibleCells];
to the 'fixLayoutAfterInsertion' method. I believe that it should also be added to 'fixLayoutAfterMoving'.
Thanks.