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!
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

Giannis Papaioannou
528 PointsInheritance
I stuck on Code Challenge. It says : Don't forget to add "strong" after nonatomic.

Stone Preston
42,016 Pointscan you link the actual challenge and the code you have currently tried

Giannis Papaioannou
528 PointsFinally, we have a class named 'Bling' which needs to have a property called 'ruby'. Switch over to 'Bling.h' and add a property named 'ruby' that belongs to the class 'Ruby'.
And i did this :
@interface Bling : NSObject @property(nonatomic) Ruby *ruby; @end
2 Answers

Stone Preston
42,016 PointsThe error message states "Don't forget to add "strong" after nonatomic."
Here in your code:
@property(nonatomic) Ruby *ruby;
you are missing a property attribute mentioned specifically in the error message, try adding it and see if you can pass now. Remember multiple property attributes look like
@property (attribute, attribute, etc) so just add the other attribute you need after nonatomic

Giannis Papaioannou
528 PointsThanks a lot !!

Stone Preston
42,016 Pointsno problem
Stone Preston
42,016 PointsStone Preston
42,016 Pointscan you link the actual challenge and the code you have currently tried