Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

my if clause always runs into the else statement? Whats the fault?

        NSLog([[category objectForKey:@"id"] stringValue]); // Traces 15
        if ([[category objectForKey:@"id"] stringValue] == "15") {
            result.isExternal = YES;
        } else {
            result.isExternal = NO;
        }

thanks for helping

share|improve this question
what is the type of the object held by your dictionary? – Brandon Bodnar Feb 13 '10 at 21:16

3 Answers

up vote 6 down vote accepted

You should change

[[category objectForKey:@"id"] stringValue]

to

[[[category objectForKey:@"id"] stringValue] isEqualToString:@"15"]

And as for comparing that stringValue how you are, you need to do == @"15" as "15" isn't a string unless an @ is infront.

share|improve this answer
Thanks, but I still run into the else statement. – fabian Feb 13 '10 at 21:11
Then try comparing the intValue like so: [[[category objectForKey:@"id"] intValue] isEqualToNumber:[NSNumber numberWithInt:15]] – Garrett Feb 13 '10 at 21:14
intValue returns an int, which means you can do [... intValue] == 15 – Dave DeLong Feb 13 '10 at 21:21
Gah, was just editing my original answer, forgot you should do what you said. Thanks! – Garrett Feb 13 '10 at 21:47

Your "if" statement is comparing two C strings with "==". You should use strcmp for that. If your function returns an objective C string, you should use @"15", and the correct comparison function.

share|improve this answer

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.