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 NSDictionary where each key points to an array. I later want to merge all of the values into one array. Is there a way to use the API to do something more efficient than say:

NSArray *anArray = [someDictionary allValues];
NSMutableArray *newArray = [NSMutableArray array];
start outter loop on anArray
   start inner loop on objects in anArray
     add objectAtIndex to newArray
share|improve this question
Answered in stackoverflow.com/q/8569388/78336 – neoneye Sep 27 '12 at 10:15

2 Answers

up vote 32 down vote accepted

Just use [newArray addObjectsFromArray:anArray];

share|improve this answer
Hi Ben, If I do it this way I don't have a flat array. I have an array of arrays. I was seeing if it was possible to do it without the looping. – Coocoo4Cocoa Aug 14 '09 at 19:20
This should still give you a flat array; you're not adding the array, you're adding the objects FROM the array. – Ben Gottlieb Aug 14 '09 at 20:35
Coocoo4Cocoa: I think you've confused addObject**FromArray:** with addObject:. addObject: adds the array to the new array, whereas what Chuck and Ben Gottlieb have suggested adds the elements in the array to the new array. – Peter Hosey Aug 14 '09 at 22:06

-[NSMutableArray addObjectsFromArray:]

share|improve this answer
I'm glad someone pointed out the class type. I'd sat there for a second wondering why the method wasn't being auto-completed. – drewish Jul 13 '12 at 23:39
+1 for the link to docs :) – emrahgunduz Feb 12 at 11:34

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.