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 Readonly Attribute

Ludwing Najera
Ludwing Najera
4,596 Points

please help! readonly attribute rejecting prewritten code!

my code is here:

@interface GNCrystalBall : NSObject

@property(strong, nonatomic, readonly) NSArray *predictions;

  • (NSString*) randomPrediction;

@end

and this is what it is doing:

_predictions is a undeclared identifier

4 Answers

NSArray *_predictions;

@property (strong, nonatomic, readonly) NSArray *predictions;

  • (NSString*) randomPrediction;

@end

Ludwing Najera
Ludwing Najera
4,596 Points

what am i supposed to do here exactly?

Ludwing Najera
Ludwing Najera
4,596 Points

yeah that did not do anything'