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

I have an NSArray filled with custom objects. Each object has several variables: pk, amount, date etc..

I want to fetch the object that has the highest number in the pk variable. I can do this using:

 NSUInteger maximumpk = [[bets valueForKeyPath:@"@max.pk"] intValue];

This gives me the actual value from the highest pk. Now I need to get the index for that object. I have seen indexOfObject used when the array has just 1 variable of data, but how do I use it in this instance?

Thanks

share|improve this question
Hi Darren, You may need to override the - (BOOL) isEqual(NSObject*) in your custom class. When you call indexOfObject in a NSArray it calls the isEqualMethod. So you can check the equality of the self.pk to the passing objects pk value. – charith Dec 10 '11 at 12:01

1 Answer

up vote 8 down vote accepted

Use -indexOfObjectPassingTest:, for example:

NSUInteger idx = [bets indexOfObjectPassingTest:^(id obj, NSUInteger idx, BOOL *stop) {
    return [obj pk] == maximumpk;
}];
share|improve this answer
Thanks, this did the trick. – Darren Dec 10 '11 at 15:58

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.