NSString Compare Not Working in Objective-C - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T18:05:00Z http://stackoverflow.com/feeds/question/695843 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/695843/nsstring-compare-not-working-in-objective-c 0 NSString Compare Not Working in Objective-C mibrop 2009-03-30T02:30:33Z 2009-03-30T02:45:08Z <p>Following is Objective-C code where I'm trying to do a compare between two NSString values, however it throws a runtime error. Here's the code:</p> <pre><code>NSDictionary *innerContent=[JSONResponseDict valueForKey:@"JSONRESPONSE"]; NSString *authFlag = [innerContent valueForKey:@"authenticationFlag"]; NSLog(@"authFlag = %@",authFlag); UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message: [NSString stringWithFormat:@"authenticationFlag = %@",authFlag] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release]; // This block is problematic if ( [authFlag isEqualToString:@"1"]){ NSLog(@"Logged in"); self.view = homeView; } else { NSLog(@"Not logged in"); } </code></pre> <p>Note that the NSString authFlag has been tested as indeed having a valid string value. authFlag either has a value of "1" or "0" (it's gotten from a response to a JSON call using json-framework). </p> <p>Here's the runtime error:</p> <pre><code>[Session started at 2009-03-29 19:21:00 -0700.] 2009-03-29 19:21:11.186 taggle[4144:20b] userEmail=user@domain.com&amp;password=opensesame 2009-03-29 19:21:11.653 taggle[4144:20b] authFlag = 1 2009-03-29 19:21:11.655 taggle[4144:20b] *** -[NSCFBoolean isEqualToString:]: unrecognized selector sent to instance 0xa089c400 2009-03-29 19:21:11.661 taggle[4144:20b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSCFBoolean isEqualToString:]: unrecognized selector sent to instance 0xa089c400' </code></pre> http://stackoverflow.com/questions/695843/nsstring-compare-not-working-in-objective-c/695853#695853 4 Answer by Can Berk Güder for NSString Compare Not Working in Objective-C Can Berk Güder 2009-03-30T02:36:46Z 2009-03-30T02:42:10Z <p>As the error log shows, authFlag is not an <code>NSString</code>, but an <code>NSCFBoolean</code>.</p> <p>You can do this:</p> <pre><code>NSCFBoolean *authFlag = [innerContent valueForKey:@"authenticationFlag"]; if([authFlag boolValue]) { NSLog(@"Logged in"); self.view = homeView; } else { NSLog(@"Not logged in"); } </code></pre>