简体   繁体   中英

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?

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];

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.

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).

As everybody has said, the object of a NSMutableArray is released after it is removed from the array.

If you don´t want to release the object, retain it just before you call remove object method. In this case, you are responsible for it to release it later:

MyClass *objectToBeRemoved=[myArray objectAtIndex:indexPath.row];
[objectToBeRemoved retain];
[myArray removeObject:objectToBeRemoved];

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM