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

Kyle V
Kyle V
781 Points

Any Advice for this Quiz

Hello, I am having a difficult time figuring out this quiz. Any advice for these three questions? Thanks

3 Answers

Create an instance of the Song class with the designated initializer initWithSinger:(NSString *)s and singer named "James Brown". Song *popSong = [[Song alloc]initWithSinger:@"James Brown"] ;

Create an instance of the Song class with the convenience constructor songWithSinger:(NSString *)s and singer named "James Brown". Song *popSong = [Song songWithSinger:@"James Brown"] ;

Create an instance of the Song with alloc and init Song *popSong =[[Song alloc]init] ;

Here are the answers... But do write what was not working for you or what you could not understand.... do share here so that we may help you in understanding these concepts better....

Kyle V
Kyle V
781 Points

Thank you so much! I appreciate your help and it somewhat makes sense despite the difficult concepts...

Can you post the link...

Kyle V
Kyle V
781 Points

Any help would be great! Thanks