I\'ve a simple model that includes:
var photos: [UIImage]?
I\'ve copied the file zombies.jpg as a file into the project. Then, in a required in
Better do this:
var photos : [UIImage?] = []
It initializes an empty array, that is ready to store UIImage objects.
UIImage