Converting NSArray to NSMutableArray to allow modification
suggest changeNSArray *myColors = [NSArray arrayWithObjects: @"Red", @"Green", @"Blue", @"Yellow", nil];
// Convert myColors to mutable
NSMutableArray *myColorsMutable = [myColors mutableCopy];
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents