Converting NSArray to NSMutableArray to allow modification

suggest change
NSArray *myColors = [NSArray arrayWithObjects: @"Red", @"Green", @"Blue", @"Yellow", nil];

// Convert myColors to mutable
NSMutableArray *myColorsMutable = [myColors mutableCopy];

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents