[Solved] Why does my App lags when scrolling UICollectionView (Swift)? [closed]
For the future, it is better to post the relevant code here rather than post an image of all the code. You can start off with changing the cellForItemAtIndexPath implementation. You are downloading the image in the method (as a synchronous implementation). So unless the image is downloaded by contentsOfURL: and rendered, the cell won’t … Read more