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
Austin Gonzalez
2,377 PointsCreate an instance of UIImage called 'image' given the name of the image is 'placeholder.png'.
So far I have this coded and I am currently stuck on this problem. The challenge is to Create an instance of UIImage called 'image' given the name of the image is 'placeholder.png'.
UITableViewCell *cell = [[UITableViewCell alloc] init];
/* Write your code below this line */
cell.imageView.image = [UIImage imageNamed:@"placeholder.png"];
I dont understand what is wrong with this code but if anyone could help that would be great.
3 Answers
Stone Preston
42,016 PointsThe challenge asks for you to "Create an instance of UIImage called 'image' given the name of the image is 'placeholder.png'."
you are jumping ahead of yourself
remember to create an instance of a UIImage you use
UIImage *image = [UIImage imageNamed:@"image_name"];
It hasnt asked you to set the imageView yet, just to instantiate the image itself
Mcgerald Lezeau
7,096 Pointsi tried this and it told me i was wrong and i won't be able to move on.
Mcgerald Lezeau
7,096 Pointsnever mind something happened with the comment above
Austin Gonzalez
2,377 PointsAustin Gonzalez
2,377 PointsThanks for the response I guess I got a little ahead of myself there.