Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Kunnath Raj
iOS Development Techdegree Student 6,211 PointsNot able to get through Challenge Task 2 of 3. The code compiles successfully in Xcode though.
The code in Quote.h is as follows:
@interface Quote : NSObject { NSArray *_quotes; } // Add property here @property (nonatomic, readonly) NSArray *quotes;
- (NSString *) randomQuote;
@end
The code in Quote.m is as follows:
import "Quote.h"
@implementation Quote
(NSArray *)quotes { if (_quotes == nil) { _quotes = @[@"1", @"2", @"3"]; } return _quotes; }
(NSString *) randomQuote {
return @"Some Quote"; } @end
1 Answer

Stone Preston
42,016 Pointshere is your issue:
@property (nonatomic, readonly)
that readonly attribute is whats causing the issue, make it strong instead:
@property (nonatomic, strong)
Kunnath Raj
iOS Development Techdegree Student 6,211 PointsKunnath Raj
iOS Development Techdegree Student 6,211 PointsThanks. For task 1, I tried @property (nonatomic) without strong (since objects are strong by default). It was consistently giving me errors, so the only other way I could make it work was by introducing readonly property (which wasn't needed as per the task and didn't make sense either). Thanks.