Ricerca…


Aggiungere elementi

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

Inserisci elementi

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

Eliminazione di elementi

Rimuovi ad indice specifico:

[myColors removeObjectAtIndex: 3];

Rimuovi la prima istanza di un oggetto specifico:

[myColors removeObject: @"Red"];

Rimuovi tutte le istanze di un oggetto specifico:

[myColors removeObjectIdenticalTo: @"Red"];

Rimuovi tutti gli oggetti:

[myColors removeAllObjects];

Rimuovi l'ultimo oggetto:

[myColors removeLastObject];

Ordinamento di matrici

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

Sposta l'oggetto in un altro indice

Sposta il blu all'inizio dell'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 ora è [@"Blue", @"Red", @"Green", @"Yellow"] .

Filtro dei contenuti della matrice con Predicato

Utilizzo di filterUsingPredicate: valuta un determinato predicato rispetto al contenuto delle matrici e agli oggetti restituiti corrispondenti.

Esempio:

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

Creazione di un NSMutableArray

NSMutableArray può essere inizializzato come un array vuoto come questo:

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

NSMutableArray può essere inizializzato con un altro array come questo:

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


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow