NSMutableArray (and all other classes with Mutable in the name) can be changed. So, if you create a simple NSArray , you cannot change its contents later (without re-creating it). But if you create an NSMutableArray , you can change it - you will notice that it has methods like -addObject: and -insertObject:atIndex:
See the documentation for more details.
jtbandes Aug 28 '09 at 5:51 2009-08-28 05:51
source share