I want to create an effect so that my collectionviewcell (which has one imageview as IBOutlet) will load its image with a random delay. So for example, cell #1 will have its image shown in 2 seconds, while #2 will take 1 second, cell #3 will take 4 seconds ... etc.
How would I do this? I heard about using NSOperationQueue at cellForRowAtIndexPath but not sure how to implement.