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: Coding a Background Image/ Problem with last line of code

I'm having trouble with the last line of code: I keep getting an error message which says that I should use "Add Subview" instead of "Insert Subview". Any idea what's wrong? Here is the code:

UIView *catView = [[UIView alloc] init];

/* Write your code below this line */ UIImage *image = [UIImage imageNamed:@"lolcat.png"]; UIImageView *imageView = [[UIImageView alloc]initWithImage:image]; [self.view addSubview:imageView];

1 Answer

Stone Preston
Stone Preston
42,016 Points

try

[catView addSubview:imageView]

self.view references a different view than catView does probably.

Thanks. Tried this, and got the same error message.

Stone Preston
Stone Preston
42,016 Points

I just went back and redid the challenge and [catView addSubview:imageView]; worked

Try

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

UIImageView *imageView = [[UIImageView alloc]initWithImage:image];

[catView addSubview:imageView];

Tried it again and it worked. Thank you!