show/hide this revision's text 2 added 201 characters in body

It

If you were on Mac OS, not iPhone OS I would say that it depends on whether the garbage collector is activated or not:

  • with GC: use myArr = nil;
  • without GC: use [myArr release];

Unfortunately, on iPhone, there is no garbage collection, so if you don't want memory leaks, you have to release your object once you no longer need it.

show/hide this revision's text 1

It depends on whether the garbage collector is activated or not:

  • with GC: use myArr = nil;

  • without GC: use [myArr release];