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

Julian Eppard
Julian Eppard
1,102 Points

Please Help (again) :(

What am I doing wrong Now??

#import "Quote.h"

@implementation Quote

- (NSString *) randomQuote {
int randomQuote = arc4random_uniform(self.quotes.count);
return [self.quotes objectsAtIndex :random];


}

- (NSArray *) quotes { 
  if (_quotes == nil){ 
   _quotes = [[NSArray alloc] initWithObjects: @"dbdb", @"kbdd", @"sadfkn", nil]; 
 } 
 return _quotes; 
 }


@end

2 Answers

You are storing the random number in the randomQuote variable, but then when you're sending the objectAtIndex message to the array, you are passing a variable that doesn't exist (random).

Also, the method is objectAtIndex, not objectsAtIndex.

So the last line in the randomQuote method should be:

return [self.quotes objectAtIndex: randomQuote];