vote up 0 vote down star

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:

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");
}

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).

Here's the runtime error:

[Session started at 2009-03-29 19:21:00 -0700.]
2009-03-29 19:21:11.186 taggle[4144:20b] userEmail=user@domain.com&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'
flag

1 Answer

vote up 4 vote down check

As the error log shows, authFlag is not an NSString, but an NSCFBoolean.

You can do this:

NSCFBoolean *authFlag = [innerContent valueForKey:@"authenticationFlag"];

if([authFlag boolValue]) {
    NSLog(@"Logged in");
    self.view = homeView;
} else {
    NSLog(@"Not logged in");
}
link|flag
That's exactly what I was thinking based on the error, but how can authFlag be boolean when it's typed as an NSString? Is there an implicit conversion/casting going on from the time I declare and instantiate the var to the time I do the compare? – mibrop Mar 30 at 3:13
[innerContent valueForKey:@"authenticationFlag"] returns a pointer to an NSCFBoolean. You're just storing the pointer value in an NSString*. That doesn't make the pointed object a string. – Can Berk Güder Mar 30 at 3:19
You can just as easily replace NSString with NSArray or even UITableView. The result doesn't change. The object being pointed to is still an NSCFBoolean. – Can Berk Güder Mar 30 at 3:20
Declared types for Objective-C objects are purely so the compiler can warn you about mismatches between two declared types. It makes no difference to the actual object. Keep in mind that these are all pointers — the actual object is not stored there, just a pointer to its address. – Chuck Mar 30 at 3:33
ok, got it now, appreciate everyone's comments. – mibrop Mar 30 at 4:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.