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 trialAndrew Nguyen
2,470 PointsRefactoring into a Model Challenge 3/3
For some reason my code is not working returning a random string from the quotes array using the arc4random_uniform() method. Everything seems right to me from what the video has taught but I'm not sure why it isn't working.
- (NSString *) randomQuote {
int random = arc4random_uniform(self.quotes.count);
return [self.quotes objectAtIndex:random];
}
1 Answer
Chris Shaw
26,676 PointsHi Andrew,
I just tested your code and it worked perfectly fine on my end, it could have just been a tiny hitch in the system that caused it to fail. If you try it again it should work fine given tasks 1 and 2 passed.