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 have a NSArray containing a list of NSDictionary. Like:

NSArray *array = ...;
NSDictionary *item = [array objectAtIndex:0];
NSLog (@"quantity: %@", [item objectForKey: @"quantity"]);

How can I sum all the quantities contained in all dictionaries of the array?

share|improve this question

3 Answers

If you call valueForKey: on an array it gives you an array of all the values for that key, so [array valueForKey:@"quantity"] will give you an array which you can loop over and sum all the values.

share|improve this answer
It's a so great way to get the array from each dictionary in the original array! Thank you very much! – sunkehappy Oct 9 '12 at 1:00

I think you can try KVC

NSMutableArray *goods = [NSMutableArray new];

NSMutableDictionary *dic = [NSMutableDictionary new];
[dic setObject:[NSNumber numberWithInt:1] forKey:@"quantity"];
[goods addObject:dic];

[dic setObject:[NSNumber numberWithInt:2] forKey:@"quantity"];
[goods addObject:dic];

[dic setObject:[NSNumber numberWithInt:3] forKey:@"quantity"];
[goods addObject:dic];

NSNumber *sum = [goods valueForKeyPath:@"@sum.quantity"];
NSLog(@"sum = %@", sum);
share|improve this answer
NSMutableArray *quantityArray = [item objectForKey: @"quantity"];
int total =0;
for(int i=0;i<[quantityArray count];i++)
{
  total+= [quantityArray objectAtIndex:i];
}
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.