I have an array that I am trying to check wether or not an indexPath(.row) exists in.

I use this code:

if ([array containsObject:[NSNumber numberWithInt:indexPath.row]]){
    NSLog(@"Yep, it exists in there.");
}

the array consist of the numbers 3, 8 and 2. The index path loads numbers fromm 0 to 8 in a loop.

Can anybody see why this doesen't work?

link|improve this question

Please CFShow(array); and report the output. – KennyTM Apr 20 '10 at 18:55
<CFArray 0x5f64350 [0x2b020a0]>{type = immutable, count = 3, values = ( 0 : <CFString 0x5f63360 [0x2b020a0]>{contents = "3"} 1 : <CFString 0x5f648e0 [0x2b020a0]>{contents = "8"} 2 : <CFString 0x5f63bc0 [0x2b020a0]>{contents = "2"} – Emil Apr 20 '10 at 19:04
2  
Oops - you have strings in there, not numbers... – Jim Apr 20 '10 at 19:11
Hahah, was it that stupid..? :P Thanks :) – Emil Apr 20 '10 at 19:13
feedback

2 Answers

up vote 2 down vote accepted

Since the array contains strings, you should compare against strings. To create a numeric string, use -stringWithFormat:. So:

if ([array containsObject:[NSString stringWithFormat:@"%d", indexPath.row]]){
    NSLog(@"Yep, it exists in there.");
}

A better solution is to store NSNumber's in the array.

link|improve this answer
Yeah, I use that now. The array is loaded from a plist, so thats not possible (i think). – Emil Apr 20 '10 at 20:44
@Emil: It is possible. Choose "Number" in Types in the property list editor. Save as binary or XML format. – KennyTM Apr 20 '10 at 21:17
oh, I didn't know that. Thanks! :) – Emil Apr 21 '10 at 17:09
feedback

containsObject: uses isEqual:, but NSNumber's equality comparison method is isEqualToNumber: Your code is inadvertently using the inherited isEqual which is just comparing pointers.

I think you'll have to iterate over array yourself and use isEqualToNumber:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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