Objective-C Language
NSMutableArray
Zoeken…
Elementen toevoegen
NSMutableArray *myColors;
myColors = [NSMutableArray arrayWithObjects: @"Red", @"Green", @"Blue", @"Yellow", nil];
[myColors addObject: @"Indigo"];
[myColors addObject: @"Violet"];
//Add objects from an NSArray
NSArray *myArray = @[@"Purple",@"Orange"];
[myColors addObjectsFromArray:myArray];
Elementen invoegen
NSMutableArray *myColors;
int i;
int count;
myColors = [NSMutableArray arrayWithObjects: @"Red", @"Green", @"Blue", @"Yellow", nil];
[myColors insertObject: @"Indigo" atIndex: 1];
[myColors insertObject: @"Violet" atIndex: 3];
Elementen verwijderen
Verwijderen bij specifieke index:
[myColors removeObjectAtIndex: 3];
Verwijder de eerste instantie van een specifiek object:
[myColors removeObject: @"Red"];
Verwijder alle instanties van een specifiek object:
[myColors removeObjectIdenticalTo: @"Red"];
Verwijder alle objecten:
[myColors removeAllObjects];
Verwijder laatste object:
[myColors removeLastObject];
Sorteermatrices
NSMutableArray *myColors = [NSMutableArray arrayWithObjects: @"red", @"green", @"blue", @"yellow", nil];
NSArray *sortedArray;
sortedArray = [myColors sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
Verplaats object naar een andere index
Verplaats Blauw naar het begin van de array:
NSMutableArray *myColors = [NSMutableArray arrayWithObjects: @"Red", @"Green", @"Blue", @"Yellow", nil];
NSUInteger fromIndex = 2;
NSUInteger toIndex = 0;
id blue = [[[self.array objectAtIndex:fromIndex] retain] autorelease];
[self.array removeObjectAtIndex:fromIndex];
[self.array insertObject:blue atIndex:toIndex];
myColors
is nu [@"Blue", @"Red", @"Green", @"Yellow"]
.
Matrixinhoud filteren met Predicate
FilterUsingPredicate gebruiken: dit evalueert een bepaald predicaat tegen de arrays-inhoud en retourneert objecten die overeenkomen.
Voorbeeld:
NSMutableArray *array = [NSMutableArray array];
[array setArray:@[@"iOS",@"macOS",@"tvOS"]];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF beginswith[c] 'i'"];
NSArray *resultArray = [array filteredArrayUsingPredicate:predicate];
NSLog(@"%@",resultArray);
Een NSMutableArray maken
NSMutableArray
kan als een lege array als volgt worden geïnitialiseerd:
NSMutableArray *array = [[NSMutableArray alloc] init];
// or
NSMutableArray *array2 = @[].mutableCopy;
// or
NSMutableArray *array3 = [NSMutableArray array];
NSMutableArray
kan worden geïnitialiseerd met een andere array als deze:
NSMutableArray *array4 = [[NSMutableArray alloc] initWithArray:anotherArray];
// or
NSMutableArray *array5 = anotherArray.mutableCopy;
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow