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

I have noticed that with Xcode4 Apple has updated the application templates to include underscores before instance variables.

// Xcode4
@property (nonatomic, retain) IBOutlet UIWindow *window;
@synthesize window = _window;

.

// Xcode3
@property (nonatomic, retain) IBOutlet UIWindow *window;
@synthesize window;

I know there are differing opinions on the usefulness of this but I was just curious if the updated templates where:

  • (1) Highlighting a new best practice.
  • (2) Showing how Apple does things but meaning for you to do it the old way.
  • (3) Its just personal taste, it does not matter.
share|improve this question
Take a look to this question. – Alex Terente May 26 '11 at 13:59
1  
In this case it's correct, because it's referring to an ivar declared in an Apple framework. You still shouldn't use single leading underscores for your own ivar names. – NSResponder May 30 '11 at 8:41
Thank you @ NSResponder, thats what I was looking for, much appreciated ... – fuzzygoat May 30 '11 at 18:56
I don't think NSResponder is right. Because Apple's own documentation now recommends it in your own variables. See developer.apple.com/library/ios/#documentation/iphone/…. Rather, it looks like a reversal of policy by Apple, and a good one I think because there's less confusion between ivars and the properties that access them. – Rhubarb Aug 29 '11 at 19:10

1 Answer

up vote 6 down vote accepted

It's interesting because in the past (pre-iOS), Apple used to discourage the use of underscore prefixes for ivars:

Avoid the use of the underscore character as a prefix meaning private, especially in methods. Apple reserves the use of this convention. Use by third parties could result in name-space collisions; they might unwittingly override an existing private method with one of their own, with disastrous consequences. See “Private Methods” for suggestions on conventions to follow for private API.

But with a modern Objective-C runtime, I believe ivar naming conflicts in subclasses has been eliminated, so this is not a problem anymore. So I think that's why they're making the templates use an underscore prefix by default, to match what Apple's internal code looks like.

share|improve this answer
1  
Ivar naming conflicts haven’t been eliminated — if a superclass declares an ivar in its @interface block, no subclass may declare an ivar with the same name. That said, the modern runtime features the non-fragile ABI, which allows class extensions to define their own ivars, which in certain cases allows the removal of ivars from the @interface block entirely which, in turn, helps with preventing name conflicts. – Bavarious May 26 '11 at 14:09

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.