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

I'm able to put the contents of an NSSet into an NSMutableArray like this:

NSMutableArray *array = [set allObjects];

The compiler complains though because [set allObjects] returns an NSArray not an NSMutableArray. How should this be fixed?

share|improve this question

1 Answer

up vote 73 down vote accepted

Since -allObjects returns an array, you can create a mutable version with:

NSMutableArray *array = [NSMutableArray arrayWithArray:[set allObjects]];

Or, alternatively, if you want to handle the object ownership:

NSMutableArray *array = [[set allObjects] mutableCopy];
share|improve this answer
5  
@Eiko: No, mutableCopy must be balanced with a release. This excerpt from NSObject mutableCopy documentation: "The invoker of the method, however, is responsible for releasing the returned object." – dreamlax Sep 30 '10 at 0:46
Sorry, totally missed that - not sure what I was thinking. – Eiko Sep 30 '10 at 9:39
With the introduction of ARC the documentation no longer says that. – dreamlax Jan 17 at 3:26

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.