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

Objective-C Syntax Overview

I don't understand what Doug means what he says that the getter methods have a name associated with the parameter. Any help is greatly appreciated.

1 Answer

Stone Preston
Stone Preston
42,016 Points

getter methods are named according to the instance variable they get. so if you have an NSArray instance variable named basketballs then the getter method for that instance variable is also called basketballs. it would look like:

  • (NSArray *)basketballs;

setter methods are the same way except you put set in front of the instance variable's name:

  • (void)setBasketballs;