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

What is the best a quickest way to reset an NSMutableArray?

share|improve this question

3 Answers

up vote 20 down vote accepted

-[NSMutableArray removeAllObjects] doesn't work for you?

share|improve this answer
It does now...Thanks! – rson Oct 29 '09 at 14:23
Stupidly it appears to actually release the object... What is the point in that? Anyway I got round it by putting a [NSMutableArray retain] just before the removeAllObjects. – jowie Aug 27 '10 at 12:06
1  
Joe - in that case, your code is broken. See developer.apple.com/mac/library/documentation/cocoa/conceptual/… – jdelStrother Aug 31 '10 at 11:44
2  
its strange that no one has mentioned about just releasing the NSMutableArray and creating a new one. I am really curious as to, given a large number of objects, which one will be faster. – Ying Dec 16 '10 at 21:29

removeAllObjects

share|improve this answer

removeAllObjects if assuming by 'reset', you mean you just want to empty the array.

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.