I integrated IGListKit into an app but the scrolling is slightly choppy/jerky, even after all the cells have loaded. This "choppiness" wasn't an issue when just using UICollectionView. The sizes of the cells are all constant. Suggestions?
README and documentationIGListKit version: 3.1.1@jlanesmith have you run Time Profiler to see what the issue is?
Sent with GitHawk
In the cellForItem() function, each cell needs to load several images, which takes time. Is there anything that IGListKit can do to improve this?
@jlanesmith image loading is beyond the scope of what IGListKit does (trying to keep the lib very focused). Some thoughts:
You could look into the "working range" example in our demos app and see if that's useful, though I'd only recommend prefetching media once you really need it.
Most helpful comment
@jlanesmith image loading is beyond the scope of what IGListKit does (trying to keep the lib very focused). Some thoughts:
You could look into the "working range" example in our demos app and see if that's useful, though I'd only recommend prefetching media once you really need it.