Is there a way to check only if two UIimages are different. Right now I am using following method which works fine but it takes time. Is there any alternative? It should return false if there is any pixel of mismatched area.
if ([UIImagePNGRepresentation(lastImage)
isEqualToData:UIImagePNGRepresentation(newImage)] )
{
return true;
}
else
{
return false;
}