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

Code challenge iOS animation (How do I name an Array correctly?)

I do not understand how to name my NSArray robotImages. I have watched the videos and tried ecerything. Please help me. Here is my code.

robotImages.imageView.animationImages = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"Robot1.png"],[UIImage imageNamed:@"Robot2.png"], [UIImage imageNamed:@"Robot3.png"], [UIImage imageNamed:@"Robot4.png"], nil];

3 Answers

Hi, just the standard way for naming an instance of an array.

NSArray *robotImages = [[NSArray alloc] initWithObjects........(everything else is correct)

Then you can set the array as the animationImages property in a seperate line, so

imageView.animationImages = robotImages;

Thanks. I just figured it out too. Definetly appreciate the help.

I can't figure out how to pass task two in this. Any ideas?