try to compare a field returned by web-service and which contains only either the String true or false (YES, it's STRING and not boolean), so i try to compare it with another string like this :
if ([withOptions isEqualToString:@"true"]) {
annotation.stationLavage=@"with";
}else {
annotation.stationLavage=@"without";
}
so when withOptions string contains the "true" string, all is ok, and when it contains the "false" string i got this exception in the log :
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSNull isEqualToString:]: unrecognized selector sent to instance 0x2984d68'
i am pretty sure that in all cases, withOptions contains a string value (either "true" or "false") and it never contains NULL.
withOptionsis always a string.withOptionsis an instance ofNSNullwhen this error is thrown. There are two possible reasons: you're retrievingwithOptionsfrom a method that may return+[NSNull null], e.g. to indicate not found, or you've corrupted memory and all bets are off. – Barry Wark May 11 '11 at 14:31+nullreturns a singleton that is allocated very early in the app lifecycle. Barry's first reason is most likely it. – bbum May 11 '11 at 15:13isaofwithOptions? – Barry Wark May 11 '11 at 17:07