尝试将我的应用程序更新到 iOS 7 我遇到了问题:
在 iOS 6 版本上,我将 UIImageView.image 与捆绑包中的图像进行比较,因此我可以根据图像是否相同来做一些事情,我使用了:
UIImage *imageComparative = [UIImage imageNamed:@"imageCompare"];
UIImage *imageComparative2 = myView.myImgView.image;
NSData *data1 = UIImagePNGRepresentation(imageComparative);
NSData *data2 = UIImagePNGRepresentation(imageComparative2);
if ([data1 isEqualToData:data2])
{
// The image is the same !
}
现在在 iOS 7 上这个代码不再工作了!
我一直在寻找解决方案几个小时,但没有。
有人能帮我吗 ?
非常感谢。