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

Paden Clayton
Paden Clayton
3,101 Points

[SOLVED] Problem with quiz

I am trying to answer the quiz and for some reason my code doesn't work. I checked it against the video to see if I somehow missed something. Can anyone point me in the right direction?

Here's the Quotes.m:

#import "Quote.h"

@implementation Quote

- (NSArray *) quotes {
  if (_quotes == nil) {
    _quotes = [[NSArray alloc] initWithObjects:@"ashjkd",@"kuyj",@"kkjkjjk",nil];
  }

  return _quotes;
}

- (NSString *) randomQuote {

    return @"Some Quote";
}

@end

4 Answers

 Vladimir Cezar
 Vladimir Cezar
7,710 Points

Could you try and close your browser and try again? Your code seems to be correct.

 Vladimir Cezar
 Vladimir Cezar
7,710 Points

There is nothing wrong with it. Are you on the 2nd or 3rd step?

Paden Clayton
Paden Clayton
3,101 Points

Thanks, i did and that cleared up the error.

Thanks for the help!