In my app there is a mechanism that requires that at a certain point two NSStrings will be the same to do something; for some reason when I compare the two, eve
NSString
You can use the method isEqualToString::
if ([bString isEqualToString:aString])
== compares the references (addresses of) the strings, and not the value of the strings.
==