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

Inheritance

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

Stone Preston
Stone Preston
42,016 Points

can you link the actual challenge and the code you have currently tried

Stone Preston
Stone Preston
42,016 Points

can you link the actual challenge and the code you have currently tried

Finally, 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
Stone Preston
42,016 Points

The 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

Thanks a lot !!