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 Build a Blog Reader iPhone App Data Modeling Using a Custom Class

Maybe I'm crazy

But, this 1 item, create an instance of Song with the initWithSinger initializer is really stumping me. The answer has to be easy, but here is my response

= [Song initWithSinger:@"James Brown"];

What am I missing?

1 Answer

Stone Preston
Stone Preston
42,016 Points

when using an initializer you need to allocate the object first using the alloc method. here is an example using NSNumber:

NSNumber *number =  [[NSNumber alloc] initWithInt:2];

so your current answer is close, you just need to allocate it first.