我试图比较两个存储为UIImageView数组的图像。
如何通过标签访问特定图片?
编辑:如果图像存储为单独的UIImageView,我会比较
imageView1.image == imageView2.image;
但是因为它被存储为数组,所以我很难去访问它。理想情况下会是
someArray[1].image == someArray[2].image;
但它不可行。
答案 0 :(得分:0)
UIImageView *imageView = (UIImageView*)[self.view viewWithTag:someTag];
只需将viewWithTag发送到任何UIView实例,您就可以获得带有该标记的View。