show/hide this revision's text 2 memory leak

If you do myArr=nil; by itself, then you've lost the pointer to which you can send the release message to. There is no magic to release your object.

And, as gs says, without being able to release your object, that memory has 'leaked'.

show/hide this revision's text 1

If you do myArr=nil; by itself, then you've lost the pointer to which you can send the release message to. There is no magic to release your object.