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 Build a Simple iPhone App (iOS7) Refactoring into a Model Creating a Custom Class

Pedro Wilson Silveira
Pedro Wilson Silveira
2,108 Points

Can't solve 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.

My code is bellow:

#import "Quote.h"

@implementation Quote

- (NSArray *) quotes {
    if ( _quotes == nil) {
  _quotes = [[NSArray alloc] initWithObjects:@"a", @"b", @"c", nil];
  return _quotes;
  }
}



- (NSString *) randomQuote {

    return @"Some Quote";
}

@end

2 Answers

Stone Preston
Stone Preston
42,016 Points

Since you are implementing a getter method for your quotes property, you need to return it no matter what, not just if its nil. so move your return statement below the if statement:

- (NSArray *) quotes {
    if ( _quotes == nil) {
  _quotes = [[NSArray alloc] initWithObjects:@"a", @"b", @"c", nil];

  }
return _quotes;
}
Pedro Wilson Silveira
Pedro Wilson Silveira
2,108 Points

Thanks Stone! How blind I was leaving the return inside the "if"!