Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm getting this crash, but, in my code I am using a string. I've been working on this one piece of code for 2 hours now and I just can't see what I'm missing! Any ideas?

 NSString *codeR = [NSString stringWithFormat:@"%@", [[object objectForKey:@"code"] stringValue]];

    if([codeR isEqualToString:@"200"])

Error:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFNumber isEqualToString:]: unrecognized selector sent to instance 0x181cf0'

I would be very grateful input, this is confusing the hell out of me!

Thanks.

share|improve this question
a little bit more code would be nice – Novarg Mar 6 '12 at 14:48
4  
There must be some code between these two lines. Otherwise it wouldn't crash. – Costique Mar 6 '12 at 14:50
Yes, please post here ALL lines between the two code lines you posted above. – MrTJ Mar 6 '12 at 14:50
There isn't any code between the two. Honest. Above these lines is a JSONParser grabbing some returnData from a request to a server. – NinjaLikesCheez Mar 6 '12 at 15:12

1 Answer

up vote 8 down vote accepted

Get rid of silly redundancy, see what happens.

NSString *codeR = [[object objectForKey:@"code"] stringValue];
// mysterious missing code
if ([coreR isEqualToString:@"200"]) // etc

Also, are you sure the error is raised from the if statement you posted? It could be coming from elsewhere.

share|improve this answer
That seems to have fixed it. It was definitely coming from the if, changing the statement/breakpoints testing all pointed to that. Thank you :) – NinjaLikesCheez Mar 6 '12 at 15:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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