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 Blog Reader iPhone App Adapting Data for Display UITableViewCell with an Image

Trying to create an instance of UIImage...help please!

Hello, I'm trying to create an instance of UIImage called 'image' for this exercise but the editor is not letting me pass this challenge. Here is my code:

cell.imageView.image = [UIImage imageNamed:@β€œplaceholder.png"];

What am I doing wrong? Thanks in advance,

Regards

2 Answers

Stone Preston
Stone Preston
42,016 Points

the task is Create an instance of UIImage called 'image' given the name of the image is 'placeholder.png'.

you need to create a new instance called image, not modify an exisiting property of your cells image view.

UIImage *image = [UIImage imageNamed:@"placeholder.png"];

that creates a new UIImage object. technically your code is correct, however the challenge expects you to do the same thing in 2 steps, not one.

Thank you!