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 trialKyle V
781 PointsAny Advice for this Quiz
Hello, I am having a difficult time figuring out this quiz. Any advice for these three questions? Thanks
3 Answers
RASHU BHATNAGAR
Courses Plus Student 2,669 PointsCreate 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....
RASHU BHATNAGAR
Courses Plus Student 2,669 PointsCan you post the link...
Kyle V
781 PointsHere is the link to the quiz: http://teamtreehouse.com/library/build-a-blog-reader-iphone-app-2/data-modeling/using-a-custom-class
Kyle V
781 PointsAny help would be great! Thanks
Kyle V
781 PointsKyle V
781 PointsThank you so much! I appreciate your help and it somewhat makes sense despite the difficult concepts...