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 Simple iPhone App (iOS7) Creating a Data Collection Creating a @property

What 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
Stone Preston
42,016 Points

I answered this question in detail a few days ago in this post. that should help clear things up

Question already answered