NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch. It's immutable variant is NSArray (nsarray), which is more efficient for memory and thread-safe than the mutable variant.
NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch.
The NSMutableArray class declares the programmatic interface to objects that manage a modifiable array of objects and “toll-free bridged” with its Core Foundation.