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 trialTaylor Weeks
4,009 PointsDeclare an int property called qty
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
___________ (____________) int qty;
@end
What is this question asking? I do not see anywhere from the videos before where this matches any syntax.
2 Answers
Marshall Huss
3,504 PointsThe question is asking you to declare a @property which can also include attributes for to define how it should be accessible or retained in memory. Check out the Objective-C docs on properties. If you still need some help let me know.
adnanrashid
889 PointsObjective C is so confusing!!