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: Creating a Custom Class - T2

Question is: 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.

Not really sure where I am going wrong, but here is the code...

#import "Quote.h"

@implementation Quote

- (NSArray *) quotes {
    if (_quotes == nil){
      _quotes = [[NSArray alloc] initWithObject:@"One", @"two", @"three", nil];
    }
    return _quotes;
}

- (NSString *) randomQuote {

    return @"Some Quote";
}

@end

1 Answer

initWithObject:

should be

initWithObjects:

It's always the small things for me.... and your always there to sort it out @Stone Preston

haha its easy to make syntax errors when you dont have xcode autocomplete to help you out.