Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Build a Simple iPhone App (iOS7) Animating and Intercepting Events Image Based Animation

1 Answer

Chris Shaw
Chris Shaw
26,676 Points

Hi Brian,

Standard NSArray types can't be modified once they're created as they are declared as a static reference however you can use NSMutableArray which is the parent class for NSArray and that allows you to modify and add additional objects.

NSMutableArray *myArray = [NSMutableArray array];

for(int i = 0; i < 10; i++) {
   [myArray addObject:[NSNumber numberWithInt:i]];
}

NSLog(@"myArray:\n%@", myArray);

Code snippet from Stack Overflow