unsplash / unsplash-photopicker-ios

📱An iOS photo picker to search and download photos from Unsplash.
MIT License
404 stars 85 forks source link

Fixed logic for requesting thumbnails at the correct size for the PhotoView in the collection view #33

Closed pocketpixels closed 3 years ago

pocketpixels commented 3 years ago

Setting max-w and max-h in the original code was not actually doing anything. From the imgix docs: "This parameter will only work if fit=crop is present" So thumbnails were actually downloaded at 1080w, which in many cases is much larger than necessary, causing unnecessary network and CPU usage. The call to layoutIfNeeded is required to let Autolayout compute the correct size for the PhotoView first.