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 Swift Properties Getter and Setter methods

So for the get and set method, get always has to return something right?

For clarification and understanding :)

1 Answer

Logan R
Logan R
22,989 Points

Yes, get always returns something because that is what it is doing, getting something to return to the user.

Really won't make much sense to say User.getUsername() and have getUsername() a void return method.

The same may not be true for all set methods. Some may return a boolean to tell the user whether or not the set was successful or not.