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 trialChris Huie
13,029 PointsCode 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
Adam Walker
794 PointsHi, 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;
Chris Huie
13,029 PointsThanks. I just figured it out too. Definetly appreciate the help.
Paul Dunahoo
5,390 PointsI can't figure out how to pass task two in this. Any ideas?