In Objective-C, if array1 is copied onto array2 using mutableCopy, and suppose the code is done in main(), who is responsible for releasing the objects contained in the array? Is it main() or array2?
|
|
I think the previous answers have missed the point, or else the asker was pretty unclear. The actual question isn't talking about either array, but rather the array contents:
Both From the NSArray documentation:
To begin with, each of the objects are retained by the NSArray Since collection classes (arrays, sets, dictionaries, etc.) handle retaining and releasing their contents, all you have to worry about is retaining or releasing the collection itself. Since you used |
||||||||
|
|
|
It wouldn't make sense for a mutable array to be tied to an immutable array. main() would be responsible for releasing array1. In my experience however, releasing objects only causes applications to crash. ObjC is fairly good at automatically managing memory. My Cocoa apps don't seem to ever need more memory than they started with, even after running several hours. |
||||||||||||
|
|
|
I reference this guide for Memory Management in Obj-C. He has a section on Arrays and Dictionaries, here's an excerpt:
The comments for the posting are also useful |
||
|
|
|
|
The ownership responsibilities are not changed by storing objects in an array. Here's an example:
This code directly allocates Both arrays keep strong references to their content, so These are all details of Cocoa's memory management conventions, not arrays. |
|||
|
