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 Protocols in Swift Protocol Basics What Is a Protocol?

Kanish Chhabra
Kanish Chhabra
2,151 Points

What are gettable and settable properties?

What are gettable and settable properties?

Natalia Khachapuridze
Natalia Khachapuridze
5,579 Points

Gettable properties are methods that present themselves as properties. They return/get property values. For example: They can get a distance in miles from a stored property which is stored in kilometers. Although you cant change property values with get. Settable properties can set/update values.

James Boonstra
James Boonstra
3,803 Points

Is this like in Java when we use Setter and Getter methods?