Hey guys..
Lets say I make the array
NSArray *array = [[NSArray alloc] initWithObjects"first", @"second", @"third", nil];
Lets say I want to go back and change a specific value in that array at a certain index number..
How would I do that?
Obviously I know I can do it Manually....but ..lets say later on in the script, I need to add more to it, or change a value..
How would I do that?
- Zac
Lets say I make the array
NSArray *array = [[NSArray alloc] initWithObjects"first", @"second", @"third", nil];
Lets say I want to go back and change a specific value in that array at a certain index number..
How would I do that?
Obviously I know I can do it Manually....but ..lets say later on in the script, I need to add more to it, or change a value..
How would I do that?
- Zac