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 Build a Blog Reader iPhone App Data Modeling Designated Initializers and Convenience Constructors

Thomas Euget
Thomas Euget
10,615 Points

what is the difference between self.attribute and _attribute?

I understand the setter and getters automatic creation through property, but what's the difference between _attribute and self.attribute?

1 Answer

Ben Griffith
Ben Griffith
5,808 Points

I've not seen the video, but if iOS follows similar conventions to other languages;

  • People often prefix private properties with an underscore to make it easy to tell that they are private.

  • The self prefix is simply a way to target a property within that instance.