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

Jimmy Kwon
Jimmy Kwon
3,493 Points

using self vs. _

When is it right to use which? I understand that the underscore skips the getter and setter and goes straight with the property whereas self accesses the getter and setter. So you wouldn't use self in the setter method since that would cause an infinite loop. So can you always just use the underscore?

1 Answer

Holger Liesegang
Holger Liesegang
50,595 Points

Theoretically you could always reference the iVar of the property with the _iVarName but IMHO that would be really bad practice - I'd like to recommend always going the self.propertyName way (with the exception of the situation where you are going to make your own setter/getter, of course - as you already wrote...and some other extremely seldom occuring situations).