UICollectionView Images Not Loading

The images for the movies collection view are not displaying from the sample source code in chapters 10 and 11.

Did the same for me. What I did was to copy the imageURL from the BestPictureNominees.plist file and try find them on the Web. For example:
(apologies for the broken URLs…I am limited to 2 URL links…so all links are on this website: http://www.impawards.com)

/intl/misc/2014/posters/song_of_the_sea.jpg
Nothing showed up. So I discovered that they have a number of alternatives, with each renamed with “_verX.jpg”.
So, using this example, I’d search for something like:
/intl/misc/2014/posters /song_of_the_sea_ver3.jpg
And an image would be retrieved.
So I updated all of the imageURL’s with an image that displayed.

Another example is: /2014/posters/boxtrolls.jpg
No image displayed, so I tried “/2014/ posters/boxtrolls_ver2.jpg” on the website and got an image. I updated the value in the BestPictureNominees.plist file.
And so on… :slight_smile: