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 Inheritance

Johannes Bรถhm
Johannes Bรถhm
5,957 Points

I don't get the task challenge

I don't know what the task is referring to: "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'."

I also feel like that the difficulty level has increased extremely over the last 2 video lessons, or am I the only one that feels that way? I really repeated the previous lesson several times but I didnt get it :-(

Regarding the task 3 of 3 I also have no clue what to do . any ideas, hands and help?

1 Answer

Stone Preston
Stone Preston
42,016 Points

you need to add a property named ruby that belongs to the class Ruby. property declarations look like this generally

@property (nonatomic, strong) Classname *propertyName;

and are placed in the header file.