Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does removeObject release the object in an NSMutableArray of objects?

I was wondering when you remove an object using removeObject in an array if that removed object is handled properly. Would the object being removed be released?

like image 432
Frank Avatar asked Nov 03 '09 17:11

Frank


3 Answers

The NSMutableArray will release it. If that's the last retain on it, it will be deallocated. From the documentation:

Like NSArray, instances of NSMutableArray maintain strong references to their contents. If you do not use garbage collection [Jed: the iPhone does not], when you add an object to an array, the object receives a retain message. When an object is removed from a mutable array, it receives a release message. If there are no further references to the object, this means that the object is deallocated. If your program keeps a reference to such an object, the reference will become invalid unless you send the object a retain message before it’s removed from the array.

See the NSMutableArray documentation. Their example, in fact, refers to removeObjectAtIndex::

id anObject = [[anArray objectAtIndex:0] retain];
[anArray removeObjectAtIndex:0];
[anObject someMessage];
like image 76
Jed Smith Avatar answered Nov 10 '22 11:11

Jed Smith


Yes. Collections retain values they collect when the values are added to the collection, which means that the values are released when they're removed from the collection.

like image 24
Dave DeLong Avatar answered Nov 10 '22 12:11

Dave DeLong


Yes, when the object is removed from the NSMutableArray, it is released. If its retain count is 0, it will be deallocated (or garbage collected, if you were instead running on OS X with GC enabled).

like image 20
Steve Madsen Avatar answered Nov 10 '22 11:11

Steve Madsen