Hi all, i have 2 strings say string A and String B i need to check if they both are eqaul or not, so did this
if(a==b){
//they are equal
}
on console they both are showing same value say 'hey'. but condition is not working for me. is there any other condition to check if 2 strings are equal.
like there is on
if([A isEqualToString : @"equal"])
{
}
but this i cant fit string B in this condition, can i?/
suggestions are always appreciated