Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to remove an item from NSArray.

share|improve this question

3 Answers

up vote 54 down vote accepted

NSArray is not mutable, that is, you cannot modify it. You should take a look at NSMutableArray. Check out the "Removing Objects" section, you'll find there many functions that allow you to remove items:

[anArray removeObjectAtIndex: index];
[anArray removeObject: item];
share|improve this answer
3  
you can remove last object by [anArray removeLastObject]; – Kshitiz Ghimire Feb 3 '11 at 9:36
NSMutableArray *arrayThatYouCanRemoveObjects = [NSMutableArray arrayWithArray:your_array];

[arrayThatYouCanRemoveObjects removeObjectAtIndex:your_object_index];

[your_array release];

 your_array = [[NSArray arrayWithArray: arrayThatYouCanRemoveObjects] retain];

that's about it

if you dont own your_array(i.e it's autoreleased) remove the release & retain messages

share|improve this answer

This category may be to your taste. But! Be frugal with its usage; since we are converting to a NSMutableArray and back again, it's not at all efficient.

@implementation NSArray (mxcl)

-(NSArray *)arrayByRemovingObject:(id)anObject
{
    if (anObject == nil) { return [[self copy] autorelease]; } //dodge an exception
    NSMutableArray *newArray = [NSMutableArray arrayWithArray:self];
    [newArray removeObject:anObject];
    return [NSArray arrayWithArray:newArray];
}

@end
share|improve this answer
1  
you're a champion! I had to use the above method because I sort an NSMutableArray, which means that the array I use in my table cells is not mutable. Therefore when I go to remove objects from the array I use your method to do so. – gotnull Feb 6 '11 at 10:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.