I have got an NSMutableArray before adding values to which I check if it's already there and I put this value at index 0. However, if the value is already there, I would like to know it's there at the specific index. This code doesn't work:
if ([theQueueArray containsObject:elementName atIndex:0])
How do you do it right, then?