I'm making an app which has a section Instagram, which shows in a UICollectionView
all the media from a defined user. I use SDWebImage to cache the images (UIImageView+WebCache to be precise). The problem is that sometimes (I couldn't find a certain pattern) the images (the main UIImageView
that is using SDWebImage to load its content and occuppies the whole UICollectionView
and a little UIImageView
which has a defined icon that comes from the assets) resizes when scrolling and they do it in two ways:
- From smaller to bigger
- From bigger to smaller
This size changes are done with an animation, and are undesired. This problem seems to be something about the new Xcode or iOS 9, because it worked just fine in iOS 8.
Some observations:
- When scrolling down it shows the images right (sometimes), but going up makes them go small, but as soon as the scrolling is stopped the images go back to normal
Tell me if you need any info. Thanks!