[Previous]
[Up]
[Next]
NSMutableArray
Authors
- Richard Frith-Macdonald
-
Version: $Revision$
Date: $Date$
Declared in: Foundation/NSArray.h
Inherits from: NSArray
Conforms to: NSCoding
Instance Variables
Methods
Class Methods
+ (id) arrayWithCapacity: (unsigned int)numItems;
Instances Methods
- (void) addObject: (id)anObject;
- (void) addObjectsFromArray: (NSArray*)otherArray;
- (id) initWithCapacity: (unsigned int)numItems;
- (void) insertObject: (id)anObject;
- (void) removeAllObjects;
- (void) removeLastObject;
- (void) removeObject: (id)anObject;
- (void) removeObject: (id)anObject;
- (void) removeObjectAtIndex: (unsigned int)index;
- (void) removeObjectIdenticalTo: (id)anObject;
- (void) removeObjectIdenticalTo: (id)anObject;
- (void) removeObjectsFromIndices: (unsigned int*)indices numIndices: (unsigned int)count;
- (void) removeObjectsInArray: (NSArray*)otherArray;
- (void) removeObjectsInRange: (NSRange)aRange;
- (void) replaceObjectAtIndex: (unsigned int)index withObject: (id)anObject;
- (void) replaceObjectsInRange: (NSRange)aRange withObjectsFromArray: (NSArray*)otherArray;
- (void) replaceObjectsInRange: (NSRange)aRange withObjectsFromArray: (NSArray*)otherArray;
- (void) setArray: (NSArray*)otherArray;
- (void) sortUsingFunction: (int(*)(id,id,void*))compare context: (void*)context;
- (void) sortUsingSelector: (SEL)comparator;