Is it possible to tag a uiimage in uiimageview individually?
问题 I searched in the class reference of UIImageView and UIImage, but did not find any info on tagging. In my code, I tagged all of the images in my NSMutableArray of images for my UIImageView, so I could retrieve the tag later: [[images objectAtIndex:0] setTag:1]; [[images objectAtIndex:1] setTag:2]; [[images objectAtIndex:2] setTag:3]; ... This causes my application to crash when I run it. The output reads: 2013-08-08 11:26:48.596 Tap Me[8145:c07] -[UIImage setTag:]: unrecognized selector sent