I am displaying dynamic images recieved from server in a horizontal collection view. When I set up the collectionview I set this:
-(void)setupCollectionView{
[se
In -setImageWithURLRequest:...
, when the image loads cache it in a hash table, and then call -reloadItemsAtIndexPaths:
with the current image path, to reload the cell and thus causing the CollectionView to re-check what size the cell should be.
Make sure you consult the hash table when looking up the image. This will also save you extra network accesses in cases where the collectionView items scroll offscreen and back on again.
Note I am worried that if you’re using a UICollectionReusableView
subclass your code can fail, because cells can be re-used before their images ever load, so the images will load in the wrong place.