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 trialJosh Schlabach
1,771 PointsWhat does "self " do in my code?
I forgot what self does in our code, and it's confusing me. Could someone give me a real life world example and explain it to me? Thanks!
3 Answers
Kal K
13,332 PointsJosh Schlabach it returns the current instance or object your in. So if your in a view controller class and you run self, you're returning that class
Holger Liesegang
50,595 PointsHi Josh Schlabach !
You might want to have a look at Self Keyword and When to use self.
Thomas Katalenas
11,033 Pointsin the video he makes a good point. init(firstName : String, lastName: String) { self.firstName = firstName self.lastName = lastName } casn be this instead, there is a difference between stored property and parameter name, which was not clear to me before. init(fName: String, lName: String) { self.firstName = fName self.lastName = lName }