I'm having a problem with isEqual:
The code:
if (currentAnchor isEqual:currentBusiness.getCllLocation))
{
do a;
}
else
{
do b;
}
currentanchor and currentbusiness.getCllocation are locations
But if they are the same, why is function b called? Is something wrong with my code?