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 Object-Oriented Objective-C Diving Deeper - Classes, Properties and Methods Creating Methods!

Luis Paulino
PLUS
Luis Paulino
Courses Plus Student 1,779 Points

Help, 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?

variable_assignment.mm
-(void)calculateTip;(calculateTip*)calculateTip{[addObject:calculateTip.itemName];

Hi Luis,

You can find a hint below.

Method declaration:

  1. Method has to be called 'calculateTip' (You have it)
  2. Method has to take variable as a parameter (You don have it)
  3. Method has to return a float value (You dont have it)

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