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

When creating a new outlet in Xcode 4 it enters the necessary code like usual, but it prefixes a _ in the header file interface (but not in the properties):

UINavigationController *_mainNavController;
UIViewController *_rootView;

it also does this in the implementation file:

@synthesize mainNavController = _mainNavController;
@synthesize rootView = _rootView;

While I can of course use them with the prefixed _, it just makes my code messy. Am I doing something horribly wrong?

Many thanks in advance.

share|improve this question

1 Answer

I can of course use them with the prefixed _.

Why don't you use your properties (like self.mainNavController) instead of the backing ivars directly?

Read what Apple has to say about using accessor methods:

Sometimes it might seem tedious or pedantic, but if you use accessor methods consistently the chances of having problems with memory management decrease considerably. If you are using retain and release on instance variables throughout your code, you are almost certainly doing the wrong thing.

Properties encapsulate memory management code and thus reduce boilerplate.

The only places you shouldn’t use accessor methods to set an instance variable are in init methods and dealloc.

Also, the convention of prefixing backing ivars with _ prevents you from accessing the backing ivars directly by mistake (and fail to retain an object, for example).

share|improve this answer
Oh it makes sense now! Thank you very much. – GarethPrice Jul 4 '11 at 20:16
@GarethPrice You are welcome :) – albertamg Jul 4 '11 at 20:37

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.