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 Objective-C Basics (Retired) Introduction to Objective-C Objective-C Syntax and @property

Answer to @property Quiz

I'm completely lost and would like to know the answer to the quiz question, Let's declare an int property and gives the fill in the blank. In the videos I can't seem to find any teaching on how to declare an instance variable in this format. Also, I'm confused by the idea of property. Is that the same as instance variable?

2 Answers

Hi Daniel

Let's declare an int property called "qty". (Remember qty is not an object so it should not have the strong attribute).

@interface Product : NSObject

@property (nonatomic) int qty;   <--answer 

I would watch the videos again. Also check out http://rypress.com/tutorials/objective-c/properties.html

Thanks for the link Aaron. I definitely didn't put the obvious 2 and 2 together. I was confused whether int property also meant it is an @property.

No problem. Glad I could help.