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 trialGerman Espitia
4,578 PointsWhat is the difference between instance variable and self?
In the interface the predictions property is defined:
@property (strong, nonatomic) NSArray *predictions;
and in the implementation we declare it and use it:
Declaration:
self.predictions = @[@"it is certain",@"it is decidedly so", nil];
Usage:
self.predictionLabel.text = [self.predictions objectAtIndex:0];
My question: What is the difference between using
[self.predictions objectAtIndex:0]
AND
[_predictions objectAtIndex:0]"
2 Answers
Stone Preston
42,016 PointsI answered this question in detail a few days ago in this post. that should help clear things up
German Espitia
4,578 PointsQuestion already answered