当一个图像已经使用 NSSearchPathForDirectoriesInDomains 方法通过保存和加载过程时,我有一个关于在 Objective-C 中比较 UIImages 的问题。
我想要的目的是根据图像显示的内容在单击时将用户引导到新屏幕。
为简单起见,假设有两种可能性 - 黑色图像和绿色图像。单击黑色图像会将您带到 xib1,单击绿色图像会将您带到 xib2。
这很简单,并且一直有效,直到我实现了保存和加载系统。
为了保存,我执行以下操作:
paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
documentsDirectory = [paths objectAtIndex:0];
pngFilePath = [NSString stringWithFormat:@"%@/test.png",documentsDirectory];
data1 = [NSData dataWithData:UIImagePNGRepresentation([level1part1 objectAtIndex:0])];
[data1 writeToFile:pngFilePath atomically:YES];
并加载我执行以下操作:
paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
documentsDirectory = [paths objectAtIndex:0];
pngFilePath = [NSString stringWithFormat:@"%@/test.png",documentsDirectory];
UIImage *image = [UIImage imageWithContentsOfFile:pngFilePath];
[button1 setImage:image forState:UIControlStateNormal];
这很好,当我退出程序并重新启动它时,图像会按我希望的方式保留在屏幕上。假设现在出现在 button1 上的图像是绿色图像。
当我单击带有发件人 id 的按钮(这是 button1)后调用以下代码时:
if(sender.currentImage == [UIImage imageNamed:self.greenImage])
{
VisitAlreadyCorrectScreen *screen = [[VisitAlreadyCorrectScreen alloc] initWithNibName:nil bundle:nil];
screen.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:screen animated:YES];
}
即使 currentImage 是绿色图像并且与我正在比较的绿色图像相同,我认为因为我在保存过程中将绿色图像保存到内存中,所以比较不起作用,因为它们保存在不同的地方在内存中 - 由以下 NSLog 验证:
Current Image: <UIImage: 0x95614c0>, and Yes Image: <UIImage: 0xde748f0>
我无法弄清楚如何比较这两个图像,以便在这种情况下它们匹配(它们都与我在资源文件夹中的同一个图像相关)。有没有人有任何建议?
如果我没有很好地解释问题是什么,请告诉我!
提前致谢!