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

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.

#import "Quote.h"

@implementation Quote

- (NSString *) randomQuote {
    if (_quotes == nil){
  _quotes = [[NSArray alloc] initWithObjects:@"1", @"2",
  @"3", nil];
  }
    return _quotes;
}

@end

If the issue of my code is a typo just let me know, but if it something i'm doing fundamentally wrong just give me a hint!

3 Answers

hmm the method has a return type of NSString but you are returning an NSArray. that could be part of the problem.

It's asking you to implement the quotes getter method, not the randomQuote method. As Stone Preston suggested, it should be returning an NSArray instead of NSString. Otherwise everything else inside the method looks correct.

Yep, i was just putting my code in the wrong place. Thanks for the help!