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 trialSimon Kaczmarek
1,734 PointsNeed assistance
I am having a problem passing the Stage 4 "Refactoring into a model" test, step two. Can't see what is wrong with my code
<
import "Quote.h"
@implementation Quote
-
(NSArray *) quotes { if (_quotes == nil){ _quotes = [[NSArray alloc] initWithObjects:@"One ", @"Two ", @"Three?", nil];
} return _quotes; }
@end
2 Answers
Holger Liesegang
50,595 PointsHi Simon,
you're just missing a "-" before the (NSArray *) - everything else is ok :)
-(NSArray *) quotes {
if (_quotes == nil) {
_quotes = [[NSArray alloc] initWithObjects:@"One ", @"Two ", @"Three?", nil];
}
return _quotes;
}
so the complete version for Challenge task 2 of 3 ["Switch to the implementation file and implement a 'quotes' method which will allocate and initialize the _quotes instance variable only if it is 'nil'. Initialize the array with any three strings."] would be:
#import "Quote.h"
@implementation Quote
-(NSArray *) quotes {
if (_quotes == nil) {
_quotes = [[NSArray alloc] initWithObjects:@"One ", @"Two ", @"Three?", nil];
}
return _quotes;
}
- (NSString *) randomQuote {
return @"Some Quote";
}
@end
Also the shorter literals version - which you of course can use too - for
_quotes = [[NSArray alloc] initWithObjects:@"One ", @"Two ", @"Three?", nil];
would be like
_quotes = @[@"One",@"Two",@"Three?"];
There's a great video here in the forum section on the right "Tips for asking questions" that might help you with posting your questions and code on the forum.
Simon Kaczmarek
1,734 PointsThank you for helping me - and yes, I need to see that video about posting code. Once again, thank you.