Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've seen in a few iPhone examples that attributes have used an underscore _ in front of the variable. Does anyone know what this means? or how it works?

an interface file I'm using looks like:

@interface MissionCell : UITableViewCell {
    Mission *_mission;
    UILabel *_missionName;
}

@property (nonatomic, retain) UILabel *missionName;

- (Mission *)mission;

I'm not sure exactly what the above does but when I try to set the mission name like:

aMission.missionName = missionName;

I get the error: request for member 'missionName' in something not a structure or union

share|improve this question

7 Answers

up vote 58 down vote accepted

If you use the underscore prefix for your ivars (which is nothing more than a common convention, but a useful one), then you need to do 1 extra thing so the auto-generated accessor (for the property) knows which ivar to use. Specifically, in your implementation file, your synthesize should look like this:

@synthesize missionName = _missionName;

More generically, this is:

@synthesize propertyName = _ivarName;
share|improve this answer
17  
with auto-synthesizing properties this is no longer necessary. Xcode synthesizes a @property xxxx with an ivar named _xxxx behind the scenes. Neat. – LearnCocos2D Oct 13 '12 at 19:17

It's just a convention for readability, it doesn't do anything special to the compiler. You'll see people use it on private instance variables and method names. Apple actually recommends not using the underscore (if you're not being careful you could override something in your superclass), but you shouldn't feel bad about ignoring that advice. :)

share|improve this answer
15  
From what I understand, Apple recommends against using the underscore prefix on method names (they reserve that for themselves as a convention for private methods), but they don't have any such recommendation about instance variable names. – Kelan May 5 '09 at 3:32
7  
@Kelan In fact, Apple encourages to do so: "Usually, you should not access instance variables directly, instead you should use accessor methods (you do access instance variables directly in init and dealloc methods). To help to signal this, prefix instance variable names with an underscore (_), for example: \@implementation MyClass { BOOL _showsTitle; }" – dmirkitanov May 5 '12 at 19:38
I actually dont think Apple encourages us to do so, since all their own sample codes in the iOS Developer Library dont have the () in them. Apple also says that they have reserved it, which must mean that they use it internally for their own frameworks like UIKit etc. Which is why we shouldn't carelessly use it. But I see that, in the link you provided @kelan. They actually say in the "revision history" that it is "suitable" to use (). I interpret is as we "can" use it if we want. – WingYn Apr 23 at 12:28

The only useful purpose I have seen is to differentiate between local variables and member variables as stated above, but it is not a necessary convention. When paired with a @property, it increases verbosity of synthesize statements – @synthesize missionName = _missionName;, and is ugly everywhere.

Instead of using the underscore, just use descriptive variable names within methods that do not conflict. When they must conflict, the variable name within the method should suffer an underscore, not the member variable that may be used by multiple methods. The only common place this is useful is in a setter or in an init method. In addition, it will make the @synthesize statement more concise.

-(void)setMyString:(NSString*)_myString
{
    myString = _myString;
}

Edit: With the latest compiler feature of auto-synthesis, I now use underscore for the ivar (on the rare occasion that I need to use an ivar to match what auto-synthesis does.

share|improve this answer
It the other way around. private variable is underscored. the property not. and whem synthesizing them you couple them. – Juzzz Sep 25 '11 at 11:31
That is exactly as I describe, except that I called it a "member variable" instead of a "private variable". – Peter DeWeese Sep 26 '11 at 15:22

It doesn't really mean anything, it's just a convention some people use to differentiate member variables from local variables.

As for the error, it sounds like aMission has the wrong type. What it its declaration?

share|improve this answer
It's common in IDE's with intellisense; it will make your member/module/class variables show at the top of the list. Another common previx is "m_" – STW May 4 '09 at 22:55
1  
if it doesn't mean anything how can you switch back and forth between _missionName and missionName like in my example above? My declaration looks like: Mission *aMission = [[Mission alloc] init]; aMission.missionName = @"a mission"; – Atma May 4 '09 at 22:58
1  
One is an instance variable and the other is a property. You can't access instance variables with syntax like aMission.missionName, because that syntax doesn't work with pointers. – Chuck May 4 '09 at 23:47
Also, note that you are trying to operate on a Mission object, but the interface you have posted with the missionName property is a MissionCell. – smorgan May 5 '09 at 0:21

Having an underscore not only makes it possible to resolve your ivars without resorting to using self.member syntax but it makes your code more readable since you know when a variable is an ivar (because of its underscore prefix) or a member argument (no underscore).

Example:

- (void) displayImage: (UIImage *) image {

    if (image != nil) {
        // Display the passed image...
        [_imageView setImage: image];
    } else {
        // fall back on the default image...
        [_imageView setImage: _image];
    }
}
share|improve this answer
In this example it would be nice to see a comparison of the use of self.image (or [self image]) as well. When is it better to use self.image and when is it better to use _image? – Boeckm May 1 '12 at 14:33
2  
@Boeckm: Generally, you should use self.image, which accesses the property. The only time you should access the instance variable, _image, directly is within init methods and the dealloc method, when calling any other method may be risky (since the object is half-initialized or half-deallocated). – Peter Hosey May 3 '12 at 2:25

This seems to be the "master" item for questions about self.variableName vs. _variablename. What threw me for a loop was that in the .h, I had:

...
@interface myClass : parentClass {
className *variableName;    // Note lack of _
}

@property (strong, nonatomic) className  *variableName;
...

This leads to self.variableName and _variableName being two distinct variables in the .m. What I needed was:

...
@interface myClass : parentClass {
className *_variableName;    // Note presence of _
}

@property (strong, nonatomic) className  *variableName;
...

Then, in the class' .m, self.variableName and _variableName are equivalent.

What I'm still not clear on is why many examples still work, even tough this is not done.

Ray

share|improve this answer

I wrote an article on this:

http://www.snowcrash.eu/when-to-use-self-myinstancevariable-and-when-to-use-_myinstancevariable/

Won't copy and paste but, in recent versions of Xcode, @property generates instance variables with a leading underscore. So, @synthesize isn't required (except in special cases).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.