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

Caleb Kleveter
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

Using a custom Class quiz

Anybody got any hints for this quiz? I never heard the answers.

1 Answer

Caleb Kleveter
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

I got it.

Edit: I had to just do a lot of guessing to get this quiz. The answers are above the code.

initWithSinger

 Song *popSong =  [[Song alloc] initWithSinger:@"James Brown"] ;

songWithSinger

 Song *popSong = [Song  songWithSinger: @"James Brown"];

Song

 Song *popSong =  [[Song alloc] init];