I'm trying to compare two images that is stored as an array of UIImageView.
How can I access a particular image through a tag?
EDIT: If images were stored as separate UIImageView I would have compared
imageView1.image == imageView2.image;
But since it is stored as an array I'm confused to access it. Ideally it would be
someArray[1].image == someArray[2].image;
But it is not viable.