Suche…


Elemente hinzufügen

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];

Elemente einfügen

NSMutableArray *myColors;
int i;
int count;
myColors = [NSMutableArray arrayWithObjects: @"Red", @"Green", @"Blue", @"Yellow", nil];
[myColors insertObject: @"Indigo" atIndex: 1];
[myColors insertObject: @"Violet" atIndex: 3];

Elemente löschen

Bei bestimmten Index entfernen:

[myColors removeObjectAtIndex: 3];

Entfernen Sie die erste Instanz eines bestimmten Objekts:

[myColors removeObject: @"Red"];

Entfernen Sie alle Instanzen eines bestimmten Objekts:

[myColors removeObjectIdenticalTo: @"Red"];

Entfernen Sie alle Objekte:

[myColors removeAllObjects];

Letztes Objekt entfernen:

[myColors removeLastObject];

Arrays sortieren

NSMutableArray *myColors = [NSMutableArray arrayWithObjects: @"red", @"green", @"blue", @"yellow", nil];
NSArray *sortedArray;
sortedArray = [myColors sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];

Objekt in einen anderen Index verschieben

Bewegen Sie Blau an den Anfang des Arrays:

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 ist jetzt [@"Blue", @"Red", @"Green", @"Yellow"] .

Filtern von Array-Inhalten mit Prädikat

Verwenden von filterUsingPredicate: Dies wertet ein gegebenes Prädikat gegen den Inhalt des Arrays und zurückgegebene Objekte aus, die übereinstimmen.

Beispiel:

      NSMutableArray *array = [NSMutableArray array];
      [array setArray:@[@"iOS",@"macOS",@"tvOS"]];
      NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF beginswith[c] 'i'"];
      NSArray *resultArray = [array filteredArrayUsingPredicate:predicate];
      NSLog(@"%@",resultArray);

NSMutableArray erstellen

NSMutableArray kann als leeres Array wie NSMutableArray initialisiert werden:

NSMutableArray *array = [[NSMutableArray alloc] init];
// or
NSMutableArray *array2 = @[].mutableCopy;
// or
NSMutableArray *array3 = [NSMutableArray array];

NSMutableArray kann mit einem anderen Array wie NSMutableArray initialisiert werden:

NSMutableArray *array4 = [[NSMutableArray alloc] initWithArray:anotherArray];
// or
NSMutableArray *array5 = anotherArray.mutableCopy; 


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow