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 Basics (Retired) Introduction to Objective-C Objective-C Syntax and @property

Coding "getter" and "setter" methods

I do not really understand how to code the "getter" and "setter" methods. Could anyone clarify these concepts?

1 Answer

Rashii Henry
Rashii Henry
16,433 Points

setters and getters in objective-c are basically what the name implies. With a setter method, you set the method to declare/initialize it. With a getter method, you can access the value you set from anywhere in your code. However, you wont have to do that because when you create a property it automatically creates the setter and getter for you.