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 trialJulian Eppard
1,102 PointsPlease help
Can you tell me why this doesn't work
(NSArray *) randomQuotes { if(_quotes ==nil){ _quotes = [[NSArray alloc] initWithObjects: @"dbdb", @"kbdd", @"sadfkn", nil]; } return _quotes; }
2 Answers
Stone Preston
42,016 PointsThe task states: 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.
you need to implement a new method called quotes. you put your code in the method called randomQuote which is why its not passing. Other than that your code looks correct, just put it inside a new method called quotes:
#import "Quote.h"
@implementation Quote
- (NSArray *) quotes {
if (_quotes == nil){
_quotes = [[NSArray alloc] initWithObjects: @"dbdb", @"kbdd", @"sadfkn", nil];
}
return _quotes;
}
- (NSString *) randomQuote {
return @"Some Quote";
}
@end
Julian Eppard
1,102 PointsThx for your help