eoghain / RBCollectionViewInfoFolderLayout

A UICollectionViewLayout that displays a folder of extra information below your items.
MIT License
92 stars 10 forks source link

Speed when scrolling #8

Closed uncleho closed 9 years ago

uncleho commented 9 years ago

I find that when I use this code with a bunch of items (like hundreds), scrolling is incredibly slow. Is this a problem with the custom layout?

eoghain commented 9 years ago

If you are using the Sticky Headers this could cause you some scrolling slowdown as it has to re-calculate the positions of all items in the collectionView every time it moves. If you aren't using Sticky Headers then the calculations are only done when expected (adding/removing items, or resizing collectionView).

uncleho commented 9 years ago

Thanks!