[Previous]
[Up]
[Next]
NSMutableArray
Authors
- Richard Frith-Macdonald
-
Version: 0.1
Date: 28 February, 2000
Declared in: Foundation/NSArray.h
Inherits from: NSArray
Conforms to: NSCoding
+ (id) arrayWithCapacity: (unsigned int)numItems
- (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