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 trialEnder Nafi Elekcioglu
8,320 PointsHow about giving the correct answer?
I've written the answer as an exact replica of the lesson, so I'm sure that it's correct. Yet, I'm still getting an irritating Bummer! reply. If it's wrong or your system thinks it's wrong, then please provide the correct answer so we can check our code and see where we {or you} had mistakes.
2 Answers
Thomas Nilsen
14,957 PointsChallange 2 should look something like this:
- (NSArray *)quotes
{
if (_quotes == nil){
_quotes = [[NSArray alloc] initWithObjects:@"test", @"test2", @"test3", nil];
}
return _quotes;
}
Ender Nafi Elekcioglu
8,320 PointsThomas, thank you very much... Apparently, I've returned not a pointer in the method as:
- (NSArray) quotes { } That's why I got that nasty Bummer! :)
Thanks again...