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 trialLuis Paulino
Courses Plus Student 1,779 PointsHelp, I don't know what to do from here!!!!
I'm pretty sure I'm writing it wrong, but it's fun figuring it out. Also, How do I write the meat of the code?
-(void)calculateTip;(calculateTip*)calculateTip{[addObject:calculateTip.itemName];
U Belfast
6,439 PointsU Belfast
6,439 PointsHi Luis,
You can find a hint below.
Method declaration:
Specifically, in your case you have different signature for method declaration and definition. (in decalration calculateTip doesnt retrun value - retrun void, but in definition the method has to retrun pointer to the method itself - what is nonsense)
Hope it helps