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.

Daniel Hahm
1,378 PointsAnswer 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

agreatdaytocode
24,757 PointsHi 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

Daniel Hahm
1,378 PointsThanks 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.

agreatdaytocode
24,757 PointsNo problem. Glad I could help.